1
0
Fork 0
peertube/scripts/danger/clean/prod.sh
2017-06-12 20:34:50 +02:00

8 lines
215 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=production npm run ts-node "./scripts/danger/clean/cleaner"
fi