We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: Deno 1.40.5
Running this code:
const p = Deno.run({cmd : ["pwd"], clearEnv : true});
With: deno run --allow-run test.js yields: Unstable API 'Deno.run.clearEnv'. The --unstable-process flag must be provided.
deno run --allow-run test.js
Unstable API 'Deno.run.clearEnv'. The --unstable-process flag must be provided.
That flag doesn't exist.
Trying this: deno run --allow-run --unstable-process test.js yields: error: unexpected argument '--unstable-process' found
deno run --allow-run --unstable-process test.js
error: unexpected argument '--unstable-process' found
The text was updated successfully, but these errors were encountered:
--unstable-process
Successfully merging a pull request may close this issue.
Version: Deno 1.40.5
Running this code:
With:
deno run --allow-run test.js
yields:
Unstable API 'Deno.run.clearEnv'. The --unstable-process flag must be provided.
That flag doesn't exist.
Trying this:
deno run --allow-run --unstable-process test.js
yields:
error: unexpected argument '--unstable-process' found
The text was updated successfully, but these errors were encountered: