mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-10-30 11:52:24 +03:00
8 lines
176 B
Bash
Executable File
8 lines
176 B
Bash
Executable File
#!/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
|
|
fi
|