Skip to content

Commit 07ee94f

Browse files
[Fix] Update install docs to point to v3.4.9 (#273)
1 parent c6eaa98 commit 07ee94f

File tree

1 file changed

+5
-5
lines changed
  • docs/versioned_docs/version-3.4/cli/_partials

1 file changed

+5
-5
lines changed

docs/versioned_docs/version-3.4/cli/_partials/install.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,36 +27,36 @@ yarn global add loft.sh
2727
<TabItem value="mac">
2828

2929
```bash
30-
curl -L -o loft "https://github.com/loft-sh/loft/releases/latest/download/loft-darwin-amd64" && sudo install -c -m 0755 loft /usr/local/bin
30+
curl -L -o loft "https://github.com/loft-sh/loft/releases/v3.4.9/download/loft-darwin-amd64" && sudo install -c -m 0755 loft /usr/local/bin
3131
```
3232

3333
</TabItem>
3434
<TabItem value="mac-arm">
3535

3636
```bash
37-
curl -L -o loft "https://github.com/loft-sh/loft/releases/latest/download/loft-darwin-arm64" && sudo install -c -m 0755 loft /usr/local/bin
37+
curl -L -o loft "https://github.com/loft-sh/loft/releases/v3.4.9/download/loft-darwin-arm64" && sudo install -c -m 0755 loft /usr/local/bin
3838
```
3939

4040
</TabItem>
4141
<TabItem value="linux">
4242

4343
```bash
44-
curl -L -o loft "https://github.com/loft-sh/loft/releases/latest/download/loft-linux-amd64" && sudo install -c -m 0755 loft /usr/local/bin
44+
curl -L -o loft "https://github.com/loft-sh/loft/releases/v3.4.9/download/loft-linux-amd64" && sudo install -c -m 0755 loft /usr/local/bin
4545
```
4646

4747
</TabItem>
4848
<TabItem value="linux-arm">
4949

5050
```bash
51-
curl -L -o loft "https://github.com/loft-sh/loft/releases/latest/download/loft-linux-arm64" && sudo install -c -m 0755 loft /usr/local/bin
51+
curl -L -o loft "https://github.com/loft-sh/loft/releases/v3.4.9/download/loft-linux-arm64" && sudo install -c -m 0755 loft /usr/local/bin
5252
```
5353

5454
</TabItem>
5555
<TabItem value="windows">
5656

5757
```powershell {4}
5858
md -Force "$Env:APPDATA\loft"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
59-
Invoke-WebRequest -URI "https://github.com/loft-sh/loft/releases/latest/download/loft-windows-amd64.exe" -o $Env:APPDATA\loft\loft.exe;
59+
Invoke-WebRequest -URI "https://github.com/loft-sh/loft/releases/v3.4.9/download/loft-windows-amd64.exe" -o $Env:APPDATA\loft\loft.exe;
6060
$env:Path += ";" + $Env:APPDATA + "\loft";
6161
[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
6262
```

0 commit comments

Comments
 (0)