aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fb6fce0..ded362b 100644
--- a/Makefile
+++ b/Makefile
@@ -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