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
current install only supports Linux/osx
Linux/osx
We can refer to the npm executable
Because it is a sh file, it does not have cross-platform capabilities.
It should be changed to the deno executable
deno
https://github.com/denoland/deno_std/blob/aa628cb926078375c3164711e49af1bd71825983/installer/mod.ts#L209-L214
#!/usr/bin/env deno run --allow-run
But there is a problem here.
#!/usr/bin/env deno run --allow-run The parameters can be passed correctly under osx, but not work on Windows
osx
Windows
ref: why-does-passing-arguments-to-the-command-in-an-env-invocation-not-work
The text was updated successfully, but these errors were encountered:
chore: flatten e2e tests (denoland#508)
b290ffa
closes denoland#496
No branches or pull requests
current install only supports
Linux/osx
We can refer to the npm executable
Because it is a sh file, it does not have cross-platform capabilities.
It should be changed to the
deno
executablehttps://github.com/denoland/deno_std/blob/aa628cb926078375c3164711e49af1bd71825983/installer/mod.ts#L209-L214
#!/usr/bin/env deno run --allow-run
But there is a problem here.
#!/usr/bin/env deno run --allow-run
The parameters can be passed correctly underosx
, but not work onWindows
ref: why-does-passing-arguments-to-the-command-in-an-env-invocation-not-work
The text was updated successfully, but these errors were encountered: