1
0
Fork 0
peertube/scripts/danger/clean/dev.sh

8 lines
191 B
Bash
Raw Normal View History

2016-10-13 19:45:23 +00:00
#!/bin/bash
read -p "This will remove all directories and Mongo database. Are you sure? " -n 1 -r
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
NODE_ENV=test node "./scripts/danger/clean/cleaner"
fi