Skip to content

Commit

Permalink
remove --unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
subshell committed Jan 10, 2025
1 parent 9905869 commit b0d4f4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
10 changes: 5 additions & 5 deletions subsh-deno
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b0d4f4f

Please sign in to comment.