1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00
Peertube/scripts/danger/clean/dev.sh
2017-06-11 15:19:43 +02:00

8 lines
209 B
Bash
Executable file

#!/bin/bash
read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r
echo
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
NODE_ENV=test npm run ts-node "./scripts/danger/clean/cleaner"
fi