We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0997ca7 commit 4d1d884Copy full SHA for 4d1d884
versions.sh
@@ -83,10 +83,11 @@ for buildxVersion in $buildxVersions; do
83
file: .[1],
84
url: ("https://github.com/docker/buildx/releases/download/v" + $version + "/" + .[1]),
85
}
86
+ | select(.file | test("[.]json$") | not)
87
| { (
88
.file
- | capture("[.](?<os>linux|windows|darwin)-(?<arch>[^.]+)([.]|$)")
89
- // error("failed to parse os-arch from filename: " + .[1])
+ | capture("[.](?<os>linux|windows|darwin)-(?<arch>[^.]+)(?<ext>[.]exe)?$")
90
+ // error("failed to parse os-arch from filename: " + .)
91
| if .os == "linux" then "" else .os + "-" end
92
+ ({
93
"amd64": "amd64",
0 commit comments