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
Hello! I'm using NuShell as my primary shell and the install script doesn't work:
bash -c "$(wget -qO- https://git.io/vQgMr)"
The reason it doesn't work in nushell is because the eval expression $() is not a valid syntax for it.
$()
The text was updated successfully, but these errors were encountered:
Also, it doesn't work in Fish shell for similar reasons I think
Sorry, something went wrong.
So I dont know if this is good or bad, but I made it work from Fish by running this:
bash -c 'bash -c "$(wget -qO- https://git.io/vQgMr)"'
No branches or pull requests
Hello! I'm using NuShell as my primary shell and the install script doesn't work:
The reason it doesn't work in nushell is because the eval expression
$()
is not a valid syntax for it.The text was updated successfully, but these errors were encountered: