2016-10-13 15:45:23 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-12-25 03:44:13 -05:00
|
|
|
read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r
|
|
|
|
echo
|
2016-10-13 15:45:23 -04:00
|
|
|
|
|
|
|
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
|
2017-06-11 09:19:43 -04:00
|
|
|
NODE_ENV=test npm run ts-node "./scripts/danger/clean/cleaner"
|
2016-10-13 15:45:23 -04:00
|
|
|
fi
|