Merge remote-tracking branch 'origin/master' into cli-guideline

This commit is contained in:
Rok Garbas 2020-12-08 10:25:25 +01:00
commit d948b10c3a
No known key found for this signature in database
GPG key ID: A0E01EF44C27BF00

9
scripts/install.in Normal file → Executable file
View file

@ -45,10 +45,15 @@ case "$(uname -s).$(uname -m)" in
path=@tarballPath_x86_64-darwin@
system=x86_64-darwin
;;
Darwin.arm64)
Darwin.arm64|Darwin.aarch64)
# check for Rosetta 2 support
if ! [ -f /Library/Apple/System/Library/LaunchDaemons/com.apple.oahd.plist ]; then
oops "Rosetta 2 is not installed on this ARM64 macOS machine. Run softwareupdate --install-rosetta then restart installation"
fi
hash=@binaryTarball_x86_64-darwin@
path=@tarballPath_x86_64-darwin@
# eventually maybe: arm64-darwin
# eventually maybe: aarch64-darwin
system=x86_64-darwin
;;
*) oops "sorry, there is no binary distribution of Nix for your platform";;