aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-07-20 20:38:14 +0200
committerMarvin Borner2020-07-20 20:38:14 +0200
commitcbbaa7973730abd1d1569dd7a5646f5f433219d9 (patch)
tree9059dc132551b371e18b9c0bcc1508c7fabe5c77 /run
parenta937e79d29685d76af6138191f553fc82cbd2b1a (diff)
Fixed node_modules linting
Diffstat (limited to 'run')
-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