aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
Diffstat (limited to 'run')
-rwxr-xr-xrun3
1 files changed, 3 insertions, 0 deletions
diff --git a/run b/run
index 1d18892..2c888ef 100755
--- a/run
+++ b/run
@@ -6,6 +6,9 @@ if grep -q "DEBUG=1" .env; then
deno test "${ARGS[@]}" test/ &&
echo "Tests succeeded!" &&
deno run "${ARGS[@]}" src/main.ts
+elif grep -q "DEBUG=2" .env; then
+ deno test "${ARGS[@]}" test/ &&
+ echo "Tests succeeded!"
else
deno run "${ARGS[@]}" src/main.ts
fi