aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/danger/clean/dev.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/danger/clean/dev.sh')
-rwxr-xr-xscripts/danger/clean/dev.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/danger/clean/dev.sh b/scripts/danger/clean/dev.sh
index cd8456772..14b45e13b 100755
--- a/scripts/danger/clean/dev.sh
+++ b/scripts/danger/clean/dev.sh
@@ -1,8 +1,10 @@
1#!/bin/bash 1#!/bin/bash
2 2
3set -eu
4
3read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r 5read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r
4echo 6echo
5 7
6if [[ "$REPLY" =~ ^[Yy]$ ]]; then 8if [[ "$REPLY" =~ ^[Yy]$ ]]; then
7 NODE_ENV=test npm run ts-node -- --type-check "./scripts/danger/clean/cleaner" 9 NODE_ENV=test npm run ts-node -- --type-check "scripts/danger/clean/cleaner"
8fi 10fi