Skip to content

Commit

Permalink
Fix arm64 Linux cs launcher address in the Mill script
Browse files Browse the repository at this point in the history
  • Loading branch information
Gedochao committed Jan 24, 2025
1 parent 45d91f9 commit 86c3ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mill
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ coursier_version="2.1.24"
# https://stackoverflow.com/questions/3466166/how-to-check-if-running-in-cygwin-mac-or-linux/17072017#17072017
if [ "$(expr substr $(uname -s) 1 5 2>/dev/null)" == "Linux" ]; then
if [ "$(uname -m)" == "aarch64" ]; then
cs_url="https://github.com/coursier/coursier/releases/download/v$coursier_version/cs-aarch64-pc-linux.gz"
cs_url="https://github.com/VirtusLab/coursier-m1/releases/download/v$coursier_version/cs-aarch64-pc-linux.gz"
else
cs_url="https://github.com/coursier/coursier/releases/download/v$coursier_version/cs-x86_64-pc-linux.gz"
fi
Expand Down

0 comments on commit 86c3ed4

Please sign in to comment.