-
Notifications
You must be signed in to change notification settings - Fork 824
New issue
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
Use "wasmer --version --verbose" in the issue template #3424
Conversation
so no more |
@ptitSeb, I removed the That's a good point about platform compatibility, though. Powershell supports |
I tried on Windows.
On CMD.exe
I don't think there is an universal solution here :( |
@ptitSeb, this error message is very surprising: $ wasmer -vV; rustc -vV
error: Found argument '-v' which wasn't expected, or isn't valid in this context
If you tried to supply `-v` as a value rather than a flag, use `-- -v`
USAGE:
wasmer [OPTIONS] <FILE> [ARGS]...
For more information try --help It's almost like Windows does something different with command-line arguments, so |
It's because of the lack of space between |
58cb3b1
to
b321a1a
Compare
Description
Now that the
wasmer
CLI can show more verbose version information (#3215), we should ask people to use it when creating tickets.Before:
After:
Fixes #3412.