blob: e6c92671de60130de74decadae19ae5b7338bd90 (
plain) (
tree)
|
|
#!/bin/bash
read -p "This will remove all directories and Mongo database. Are you sure? " -n 1 -r
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
NODE_ENV=production node "./scripts/danger/clean/cleaner"
fi
|