blob: f4a5d1e8a7b6f5ec0fdf2bae71356b5606d1714c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/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 node "./scripts/danger/clean/cleaner"
fi
|