PeerTube/scripts/danger/clean/modules.sh

8 lines
191 B
Bash
Raw Normal View History

#!/bin/bash
read -p "This will remove all node and typescript modules. Are you sure? " -n 1 -r
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
rm -rf node_modules client/node_modules client/typings
fi