Skip to content

Commit 81983bb

Browse files
committed
Update default installation methods in the quickstart doc section
1 parent eca0c94 commit 81983bb

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

website/src/components/BasicInstall.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,32 @@ import {currentOs} from "./osUtils";
77
export default function BasicInstall(props){
88
return <BrowserOnly>{() =>
99
<div>
10-
<Tabs
10+
<Tabs
1111
groupId="operating-systems"
1212
defaultValue={currentOs()}
1313
values={[
14-
{label: 'Windows', value: 'windows'},
1514
{label: 'macOS', value: 'mac'},
1615
{label: 'Linux', value: 'linux'},
16+
{label: 'Windows', value: 'windows'},
1717
{label: 'GitHub Actions', value: 'gha'}
1818
]}>
19-
19+
2020
<TabItem value="windows">
21-
<a className="no_monospace" href="https://github.com/Virtuslab/scala-cli/releases/latest/download/scala-cli-x86_64-pc-win32.msi">
22-
Download Scala CLI for Windows
23-
</a>
21+
<p>Install Scala CLI with <a className="no_monospace" href="https://learn.microsoft.com/en-us/windows/package-manager/winget/#install-winget">WinGet</a> by running the following one-line command in your terminal:</p>
22+
<code>
23+
winget install virtuslab.scalacli
24+
</code>
2425
</TabItem>
2526

26-
<TabItem value="linux" >
27+
<TabItem value="linux">
2728
<p>Run the following one-line command in your terminal:</p>
2829
<code>
2930
curl -sSLf https://scala-cli.virtuslab.org/get | sh
3031
</code>
3132
</TabItem>
3233

3334
<TabItem value="mac">
34-
<p>Run the following one-line command in your terminal:</p>
35+
<p>Install Scala CLI with <a className="no_monospace" href="https://brew.sh/">Homebrew</a> by running the following one-line command in your terminal:</p>
3536
<code>
3637
brew install Virtuslab/scala-cli/scala-cli
3738
</code>
@@ -47,6 +48,6 @@ export default function BasicInstall(props){
4748
</TabItem>
4849

4950
</Tabs>
50-
</div>
51+
</div>
5152
}</BrowserOnly>
5253
}

0 commit comments

Comments
 (0)