Server: add pod created date and score to the list controller
[oweals/peertube.git] / scripts / danger / clean / modules.sh
1 #!/bin/bash
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
7 fi