diff options
Diffstat (limited to 'run')
-rwxr-xr-x | run | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,12 +3,12 @@ ARGS=(--allow-net --allow-env --allow-read --allow-write --unstable) if grep -q "DEBUG=1" .env; then - deno lint --unstable && + deno lint --unstable src/ && deno test "${ARGS[@]}" test/ && echo "Tests succeeded!" && deno run "${ARGS[@]}" src/main.ts elif grep -q "DEBUG=2" .env; then - deno lint --unstable && + deno lint --unstable src/ && deno test "${ARGS[@]}" test/ && echo "Tests succeeded!" else |