Skip to content

Commit

Permalink
fix: coreutils download path for darwin_amd64 (#853)
Browse files Browse the repository at this point in the history
* fix: coreutils download path for darwin_amd64

* fixup

---------

Co-authored-by: Greg Magolan <[email protected]>
  • Loading branch information
mrmeku and gregmagolan authored May 23, 2024
1 parent 474e680 commit 6959b3f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/private/coreutils_toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ COREUTILS_VERSIONS = {
"sha256": "sha256-9zGLFOMDjUDbraDY/hrE5zFJ0O+QYrvx2wHk3Gw3q/A=",
},
"darwin_amd64": {
# TODO: remove this version_override hack once 0.0.27 is releases and contains a darwin arm binary
"version_override": "0.0.23",
"filename": "coreutils-0.0.23-x86_64-apple-darwin.tar.gz",
"sha256": "sha256-SswetVAuK/hMK1r9uBvNnKj5JpSgD0bzkbsHTxOabCo=",
},
Expand Down Expand Up @@ -176,8 +178,11 @@ def _coreutils_platform_repo_impl(rctx):
is_windows = rctx.attr.platform.startswith("windows_")
platform = rctx.attr.platform
filename = COREUTILS_VERSIONS[rctx.attr.version][platform]["filename"]
version = rctx.attr.version
if "version_override" in COREUTILS_VERSIONS[rctx.attr.version][platform]:
version = COREUTILS_VERSIONS[rctx.attr.version][platform]["version_override"]
url = "https://github.com/uutils/coreutils/releases/download/{}/{}".format(
rctx.attr.version,
version,
filename,
)
rctx.download_and_extract(
Expand Down

0 comments on commit 6959b3f

Please sign in to comment.