We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45d91f9 commit caff6f6Copy full SHA for caff6f6
project/settings.sc
@@ -79,6 +79,12 @@ def cs: T[String] = T.persistent {
79
s"https://github.com/coursier/coursier/releases/download/v$csVersion/cs-x86_64-pc-linux.gz"
80
)
81
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
88
case "aarch64" =>
89
if (Properties.isLinux)
90
Some(
0 commit comments