mise fetches incorrect installer / binary resource (MSI sometimes, macOS app sometimes) #7837
|
In the latest versions of mise, running This causes this kind of failure: The mise.toml is here: https://github.com/ReactiveX/RxSwift/blob/main/mise.toml When looking in In v2026.1.7 - it downloads an MSI file (I didn't check builds in between, just kinda tried jumping between releases). |
Replies: 1 comment 1 reply
|
Thanks for reporting this! I found the root cause. The problem: The asset matcher wasn't recognizing For SwiftFormat's releases:
The The fix: PR #7838 adds
This response was generated with assistance from Claude Code |

Thanks for reporting this! I found the root cause.
The problem: The asset matcher wasn't recognizing
.msias a Windows-specific format. It only looked for text patterns like "win", "windows" in filenames.For SwiftFormat's releases:
SwiftFormat.arm64.msiscored +50 (arm64 match, no OS penalty)swiftformat.zip(correct macOS CLI) scored only +5The
.msifile won because of the architecture match bonus, even though it's a Windows installer.The fix: PR #7838 adds
.msiand.exeas Windows-specific indicators. These now get:This response was generated with assistance from Claude Code