mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
8 lines
197 B
Bash
Executable File
8 lines
197 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
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
|