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
main
7.2.1
shovel install -a 32bit <app> installs 64bit version of the app which also has 32bit (tested with custom manifest, then with main/dirhash)
shovel install -a 32bit <app>
main/dirhash
shovel install -a 32bit <app> should install 32bit version of the app (provided app manifest supports it)
Here is the example output when trying to install 32bit main/dirhash:
PS C:\>shovel install -a 32bit dirhash Installing 'dirhash' (1.23.0) [64bit] [main] WARN By installing you accept following license: BSD-3-Clause (https://spdx.org/licenses/BSD-3-Clause.html) Loading DirHash-1.23.0-x64.zip from cache Checking hash of DirHash-1.23.0-x64.zip ... ok. Extracting DirHash-1.23.0-x64.zip ... done. Linking ~\scoop\apps\dirhash\current => ~\scoop\apps\dirhash\1.23.0 Creating shim for 'DirHash'. 'dirhash' (1.23.0) was installed successfully!
Output when installing the same app with long option --arch 32bit:
--arch 32bit
PS C:\>shovel install --arch 32bit dirhash Installing 'dirhash' (1.23.0) [32bit] [main] WARN By installing you accept following license: BSD-3-Clause (https://spdx.org/licenses/BSD-3-Clause.html) Loading DirHash-1.23.0-x86.zip from cache Checking hash of DirHash-1.23.0-x86.zip ... ok. Extracting DirHash-1.23.0-x86.zip ... done. Linking ~\scoop\apps\dirhash\current => ~\scoop\apps\dirhash\1.23.0 Creating shim for 'DirHash'. 'dirhash' (1.23.0) was installed successfully!
The text was updated successfully, but these errors were encountered:
fix(commands): Short option -a always leak default architecture
fb3f6c8
- Closes #271
fix(commands): Short option -a always leak default architecture (#272)
dc9ad9b
No branches or pull requests
main
7.2.1
Bug Report
Current Behavior
shovel install -a 32bit <app>
installs 64bit version of the app which also has 32bit (tested with custom manifest, then withmain/dirhash
)Expected Behavior
shovel install -a 32bit <app>
should install 32bit version of the app (provided app manifest supports it)Additional context/output
Here is the example output when trying to install 32bit
main/dirhash
:Output when installing the same app with long option
--arch 32bit
:The text was updated successfully, but these errors were encountered: