]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/danger/clean/modules.sh
Return with callback with an error
[github/Chocobozzz/PeerTube.git] / scripts / danger / clean / modules.sh
CommitLineData
93534495
C
1#!/usr/bin/env sh
2
3read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
4
5if [[ "$REPLY" =~ ^[Yy]$ ]]; then
f03996da 6 rm -rf node_modules client/node_modules client/typings
93534495 7fi