You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if you want to download a specific version the semver syntax is kind of awkward. Happy to close this issue, if others are OK with the current behavior.
Anyway, I would agree that --version 0.1.0 ought to mean =0.1.0. We could check if the first char is a digit and prepend =, which would still let you do --version '^0.1.0' to get the current behavior.
Currently, if you want to download a specific version the semver syntax is kind of awkward. Happy to close this issue, if others are OK with the current behavior.
Example:
warg download namespace:package-name --version 0.1.0
This will match
^0.1.0
instead of=0.1.0
.In order to download the exact match:
warg download namespace:package-name --version \=0.1.0
=
needs to be escaped with\
The text was updated successfully, but these errors were encountered: