]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/danger/clean/modules.sh
Clean shell scripts (#398)
[github/Chocobozzz/PeerTube.git] / scripts / danger / clean / modules.sh
1 #!/bin/bash
2
3 set -eu
4
5 read -p "This will remove all node server and client modules. Are you sure? " -n 1 -r
6
7 if [[ "$REPLY" =~ ^[Yy]$ ]]; then
8 rm -rf node_modules client/node_modules
9 fi