diff options
author | Anders Kaseorg <andersk@mit.edu> | 2021-05-11 06:43:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 15:43:44 +0200 |
commit | d169eb2a1badc5ea32d21bc757d767927ba813c5 (patch) | |
tree | 3a0222aa82ab47296ad62abea6a4c5b33a0a88fd /scripts | |
parent | 7ab3bc32b139e251ff8d9abf25d6cadf3c0c6945 (diff) |
install: Fix hash variable for Darwin.arm64 (#4769)
When commit 233b61d3d6482544c35b9d340240bf3260acff13 (#4224) renamed
@binaryTarball_${system}@ to @tarballHash_${system}@, it updated this
reference for every platform except Darwin.arm64.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.in b/scripts/install.in index 7d25f7bd7..f660e3807 100755 --- a/scripts/install.in +++ b/scripts/install.in @@ -51,7 +51,7 @@ case "$(uname -s).$(uname -m)" in oops "Rosetta 2 is not installed on this ARM64 macOS machine. Run softwareupdate --install-rosetta then restart installation" fi - hash=@binaryTarball_x86_64-darwin@ + hash=@tarballHash_x86_64-darwin@ path=@tarballPath_x86_64-darwin@ # eventually maybe: aarch64-darwin system=x86_64-darwin |