You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/_advanced_install.mdx
+41-2Lines changed: 41 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,10 +12,12 @@ import {currentOs} from "../src/components/osUtils";
12
12
values={[
13
13
{label: 'Windows', value: 'windows'},
14
14
{label: 'MacOs', value: 'mac'},
15
+
{label: 'MacOs/M1', value: 'm1'},
15
16
{label: 'Linux', value: 'linux'},
16
17
]}>
17
18
<TabItemvalue="windows"></TabItem>
18
19
<TabItemvalue="mac"></TabItem>
20
+
<TabItemvalue="m1"></TabItem>
19
21
<TabItemvalue="linux"></TabItem>
20
22
</Tabs>
21
23
</SectionAbout>
@@ -30,6 +32,7 @@ defaultValue={currentOs()}
30
32
values={[
31
33
{label: 'Windows', value: 'windows'},
32
34
{label: 'MacOs', value: 'mac'},
35
+
{label: 'MacOs/M1', value: 'm1'},
33
36
{label: 'Linux', value: 'linux'},
34
37
]}
35
38
>
@@ -260,12 +263,12 @@ scala-cli about
260
263
</TabItem>
261
264
<TabItemvalue="installer">
262
265
263
-
Download PKG installer with Scala CLI for MacOS
266
+
Download the PKG installer with Scala CLI for MacOS
264
267
<DownloadButtondesc='Scala CLI for MacOS'href='https://github.com/Virtuslab/scala-cli/releases/latest/download/scala-cli-x86_64-apple-darwin.pkg'></DownloadButton>
265
268
<br/>
266
269
<br/>
267
270
268
-
Once downloaded, right-click on `scala-cli-x86_64-apple-darwin.pkg` from Finder, and choose "Open".
271
+
Once downloaded, right-click on `scala-cli-x86_64-apple-darwin.pkg` from Finder and then choose "Open".
269
272
</TabItem>
270
273
<TabItemvalue="brew">
271
274
@@ -299,6 +302,42 @@ sdk install scalacli
299
302
</TabItem>
300
303
</Tabs>
301
304
305
+
</TabItem>
306
+
<TabItemvalue="m1">
307
+
308
+
<Tabs
309
+
groupId="m1"
310
+
defaultValue="installer"
311
+
values={[
312
+
{label: 'Manual', value: 'manual'},
313
+
{label: 'Installer', value: 'installer'},
314
+
]}
315
+
>
316
+
<TabItemvalue="manual">
317
+
318
+
Download the launcher from GitHub release assets with
Check that it runs fine by running its `about` command:
326
+
```bash
327
+
scala-cli about
328
+
```
329
+
</TabItem>
330
+
<TabItemvalue="installer">
331
+
332
+
Download the PKG installer with Scala CLI for MacOS/M1
333
+
<DownloadButtondesc='Scala CLI for MacOS/M1'href='https://github.com/Virtuslab/scala-cli/releases/latest/download/scala-cli-aarch64-apple-darwin.pkg'></DownloadButton>
334
+
<br/>
335
+
<br/>
336
+
337
+
Once downloaded, right-click on `scala-cli-aarch64-apple-darwin.pkg` from Finder and then choose "Open".
0 commit comments