aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun4
1 files changed, 2 insertions, 2 deletions
diff --git a/run b/run
index 9362e9a..edc0161 100755
--- a/run
+++ b/run
@@ -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