Closed kanwren closed 6 months ago
Because the arm64 version was only just introduced you'll need to explicitly separate the old versions and the new versions. It's basically something like:
// old versions
version "4.9.2" {
platform darwin { source = "...old url" }
// ... more stuff, remove auto-version
}
// new version with new source
version "4.9.6" {
platform darwin { source = "...new url" }
auto-version {
// ...
}
}
Awesome thanks, and thanks for backfilling the versions.
It actually wasn't just introduced, it's been available since every version after 4.9.5
, the earliest that's recorded here! I had overridden the unpacking incorrectly though; should be fixed!
I'm going to merge this as-is, the tests are taking forever.
yq
has releasedarm64
binaries since4.9.6
. Updateyq
's darwin configuration to support this.