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
it would be great if the release asset names could include the word macos.
This would enable installing xcodes via mise using the ubi backend.
Currently it fails because it expects assets in GitHub releases for macOS to have macos (or darwin or osx, see also) in their name.
Currently it fails:
$ mise use ubi:XcodesOrg/xcodes
mise ERROR failed to install ubi:XcodesOrg/[email protected]
mise ERROR Failed to install with ubi 'ubi:XcodesOrg/[email protected]': could not find a release asset for this OS (macos) from xcodes-1.6.0.arm64_mojave.bottle.tar.gz, xcodes-1.6.0.mojave.bottle.tar.gz, xcodes.zip
mise ERROR Run with --verbose or MISE_VERBOSE=1 for more information
To demonstrate how it works, I have create another repo that has these assets:
xcodes-1.6.0.macos.arm64.tar.gz
xcodes-1.6.0.macos.i386.tar.gz
That one you can install successfully:
$ mise use ubi:plu/xcodes
mise Installed executable into /Users/johannes.plunien/.local/share/mise/installs/ubi-plu-xcodes/1.6.0/xcodes
mise ubi:plu/[email protected] ✓ installed
mise ~/.config/mise/config.toml tools: ubi:plu/[email protected]
$ which xcodes
/Users/johannes.plunien/.local/share/mise/installs/ubi-plu-xcodes/1.6.0/xcodes
$ xcodes version
1.6.0
The text was updated successfully, but these errors were encountered:
Hi,
it would be great if the release asset names could include the word
macos
.This would enable installing
xcodes
via mise using the ubi backend.Currently it fails because it expects assets in GitHub releases for macOS to have
macos
(ordarwin
orosx
, see also) in their name.Currently it fails:
To demonstrate how it works, I have create another repo that has these assets:
xcodes-1.6.0.macos.arm64.tar.gz
xcodes-1.6.0.macos.i386.tar.gz
That one you can install successfully:
The text was updated successfully, but these errors were encountered: