2016-05-19 14:37:43 -04:00
|
|
|
#!/bin/bash
|
2016-04-30 05:17:50 -04:00
|
|
|
|
2018-03-27 04:35:12 -04:00
|
|
|
set -eu
|
|
|
|
|
2016-10-13 15:45:23 -04:00
|
|
|
read -p "This will remove all node server and client modules. Are you sure? " -n 1 -r
|
2016-04-30 05:17:50 -04:00
|
|
|
|
|
|
|
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
|
2016-10-10 15:34:10 -04:00
|
|
|
rm -rf node_modules client/node_modules
|
2016-04-30 05:17:50 -04:00
|
|
|
fi
|