Skip to content

Commit

Permalink
Update install script remove macos-universal
Browse files Browse the repository at this point in the history
- New releases will include macos x86_64 and aarch64 binaries
  • Loading branch information
kosticmarin committed Aug 29, 2023
1 parent 9e9e00f commit 3d05cd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ if [ "$OS" = "Windows_NT" ]; then
target="windows-amd64"
else
case $(uname -sm) in
"Darwin") target="macos-universal" ;;
"Darwin x86_64") target="macos-x86_64" ;;
"Darwin aarch64") target="macos-aarch64" ;;
"Linux aarch64")
echo "Error: Official Lunatic Runtime builds for Linux aarch64 are not available."
exit 1
Expand Down

0 comments on commit 3d05cd1

Please sign in to comment.