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
When using --test mode on windows, an error is raised:
error: Issue writing to /dev/null: Os { code: 3, kind: NotFound, message: "The system cannot find the path specified." }
On windows, you should use > nul instead
> nul
The text was updated successfully, but these errors were encountered:
I think to line to change is in options.rs where you should change the string depending on the current OS.
Sorry, something went wrong.
Thanks, Good catch !
Thanks, you're right for the fix. We will add the fix in the next release.
For the time-being, you could use the equivalent options --output nul --progress --summary
--output nul --progress --summary
The fix is now merged into master. A snapshot release can be downloaded the action artifact
Successfully merging a pull request may close this issue.
When using --test mode on windows, an error is raised:
error: Issue writing to /dev/null: Os { code: 3, kind: NotFound, message: "The system cannot find the path specified." }
On windows, you should use
> nul
insteadThe text was updated successfully, but these errors were encountered: