You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've already opened an upstream issue about the progress bar lib used (deno-library/progress#30)
The advantage of printing to stderr is that you can use $() (which does not capture stderr) to resolve the allow run path ahead and ensure your actual script only execute with limited permissions:
deno run --allow-run=$(deno eval'console.log(await import("jsr:@astral/astral").then(_ => _.getBinary("chrome")))') mod.ts
I've already opened an upstream issue about the progress bar lib used (deno-library/progress#30)
The advantage of printing to stderr is that you can use
$()
(which does not capture stderr) to resolve the allow run path ahead and ensure your actual script only execute with limited permissions:deno run --allow-run=$(deno eval 'console.log(await import("jsr:@astral/astral").then(_ => _.getBinary("chrome")))') mod.ts
Some other linux command also do this, like
wget
:The text was updated successfully, but these errors were encountered: