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
I want a version specific install feature like as the --version argument of Chocolatey.
--version
winget install node --version 12.16.3
winget install node --version 12
winget install node --version 03adacd473513da7adccf9f96123e28e098fd885
winget install node --version experimental-brabrabra
Of course, these examples are ideal but I want eg1 at least.
Note: --version argument is already used to show version of this app. So, it will be require a solution for the argument patterns too.
See also Chocolatey's examples: https://chocolatey.org/docs/commandsinstall#examples
// Cite: https://chocolatey.org/docs/commandsinstall#examples choco install ruby --version 1.9.3.55100 -my choco install ruby --version 2.0.0.59800 -my choco install ruby --version 2.1.5 -my
The text was updated successfully, but these errors were encountered:
Note: Maybe related to: #163 #216 #120
Sorry, something went wrong.
Example 1 is already supported: -v,--version Use the specified version; default is the latest version
Example 2 seems relatively easy, but doesn't work right now.
Example 3 isn't the kind of data we have, and Example 4 is future work covered by #147
No branches or pull requests
Description of the new feature/enhancement
I want a version specific install feature like as the
--version
argument of Chocolatey.winget install node --version 12.16.3
full specified versionwinget install node --version 12
; specified major version, minor and revision are autowinget install node --version 03adacd473513da7adccf9f96123e28e098fd885
; specified commit-IDwinget install node --version experimental-brabrabra
; specified branch or tagOf course, these examples are ideal but I want eg1 at least.
Note:
--version
argument is already used to show version of this app. So, it will be require a solution for the argument patterns too.Proposed technical implementation details (optional)
See also Chocolatey's examples: https://chocolatey.org/docs/commandsinstall#examples
The text was updated successfully, but these errors were encountered: