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