diff options
author | Marvin Borner | 2020-07-20 20:38:14 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-20 20:38:14 +0200 |
commit | cbbaa7973730abd1d1569dd7a5646f5f433219d9 (patch) | |
tree | 9059dc132551b371e18b9c0bcc1508c7fabe5c77 /run | |
parent | a937e79d29685d76af6138191f553fc82cbd2b1a (diff) |
Fixed node_modules linting
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 |