Skip to content

Commit caff6f6

Browse files
committed
Add a Linux arm64 case for coursier download
1 parent 45d91f9 commit caff6f6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: project/settings.sc

+6
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ def cs: T[String] = T.persistent {
7979
s"https://github.com/coursier/coursier/releases/download/v$csVersion/cs-x86_64-pc-linux.gz"
8080
)
8181
else None
82+
case "arm64" =>
83+
if (Properties.isLinux)
84+
Some(
85+
s"https://github.com/VirtusLab/coursier-m1/releases/download/v$csVersion/cs-aarch64-pc-linux.gz"
86+
)
87+
else None
8288
case "aarch64" =>
8389
if (Properties.isLinux)
8490
Some(

0 commit comments

Comments
 (0)