mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-25 18:20:31 -06:00
8 lines
179 B
Bash
Executable File
8 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
read -p "This will remove all node server and client modules. Are you sure? " -n 1 -r
|
|
|
|
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
|
|
rm -rf node_modules client/node_modules
|
|
fi
|