d357e1b77f53ccdab295591216afe83748d1869f
[oweals/peertube.git] / scripts / danger / clean / modules.sh
1 #!/usr/bin/env sh
2
3 read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
4
5 if [[ "$REPLY" =~ ^[Yy]$ ]]; then
6   rm -rf node_modules client/node_modules client/typings/{browser,main}*
7 fi