From 51252cc24e3e475daf04d0dcfc51b5a2a1393b12 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 13 Mar 2021 21:20:33 -0800 Subject: chore: tidy up makefile --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3