diff options
| author | Fuwn <[email protected]> | 2021-03-13 21:20:33 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-13 21:20:33 -0800 |
| commit | 51252cc24e3e475daf04d0dcfc51b5a2a1393b12 (patch) | |
| tree | b046e11854432133d866bca6386c2328ed1100b6 | |
| parent | chore: readme (diff) | |
| download | discordeno-cli-51252cc24e3e475daf04d0dcfc51b5a2a1393b12.tar.xz discordeno-cli-51252cc24e3e475daf04d0dcfc51b5a2a1393b12.zip | |
| -rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,10 +1,12 @@ +flags = --allow-net --allow-read --allow-write --allow-run --unstable
+
all: version help run
run:
- deno run --allow-net --allow-read --allow-write --allow-run --unstable mod.ts
+ deno run $(flags) mod.ts
help:
- deno run --allow-net --allow-read --allow-write --allow-run --unstable mod.ts --help
+ deno run $(flags) mod.ts --help
version:
- deno run --allow-net --allow-read --allow-write --allow-run --unstable mod.ts --version
+ deno run $(flags) mod.ts --version
|