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