From b0d4f4fcc035dfc45e04f647b37ffc3401324489 Mon Sep 17 00:00:00 2001 From: subshell Date: Fri, 10 Jan 2025 17:00:48 +0000 Subject: [PATCH] remove --unstable --- main.ts | 1 - subsh-deno | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/main.ts b/main.ts index 44cb111..18c88ab 100755 --- a/main.ts +++ b/main.ts @@ -7,7 +7,6 @@ const status = await Deno.run({ "--allow-net", "--allow-env", "--no-prompt", - "--unstable", "--eval-file=https://deno.land/x/subshell@0.2.45-4/init.ts", ], }).status(); diff --git a/subsh-deno b/subsh-deno index 0d2a4bf..c50ebe2 100755 --- a/subsh-deno +++ b/subsh-deno @@ -13,13 +13,13 @@ fi if [[ "$1" == cache ]]; then until - $DENO run --no-lock --unstable -A cache.ts + $DENO run --no-lock -A cache.ts do sleep 1 done - $DENO run --no-lock --unstable -A cache.ts + $DENO run --no-lock -A cache.ts else - # $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --unstable --eval-file=https://deno.land/x/subshell@0.2.45-4/init.ts - # $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --eval-file=./init.ts - $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --unstable --allow-import --eval-file=https://deno.land/x/subshell@0.2.45-4/init.ts + # $DENO repl --v8-flags=--trace-side-effect-free-debug-evaluate --eval-file=https://deno.land/x/subshell@0.2.45-4/init.ts + # $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --eval-file=./init.ts + $DENO repl --no-lock --allow-read=".github" --allow-net --allow-env --no-prompt --allow-import --eval-file=https://deno.land/x/subshell@0.2.45-4/init.ts fi