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
Using hyperfine on Windows with nushell doesn't work properly.
Trying to benchmark ls gives me an unrecognized command error: This makes sense because ls is not a command on Windows with cmd.exe.
Setting the shell manually with hyperfine -S nu 'ls' --show-output gives me another error:
hyperfine -S nu 'ls' --show-output
nushell only supports running commands using nu -c.
nu -c
The text was updated successfully, but these errors were encountered:
Thank you for reporting this. That is unfortunate. Do you have any ideas on how to resolve this?
Sorry, something went wrong.
fixed in #582, looked like it always defaulted to cmd.exe style of shell on windows, now the default should be -c when not in cmd.exe
-c
Fixes #568
f00acf9
Successfully merging a pull request may close this issue.
Using hyperfine on Windows with nushell doesn't work properly.
Trying to benchmark ls gives me an unrecognized command error:
This makes sense because ls is not a command on Windows with cmd.exe.
Setting the shell manually with
hyperfine -S nu 'ls' --show-output
gives me another error:nushell only supports running commands using
nu -c
.The text was updated successfully, but these errors were encountered: