mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 01:39:37 +02:00
7 lines
191 B
Bash
Executable file
7 lines
191 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 client/typings
|
|
fi
|