File tree 1 file changed +5
-5
lines changed
docs/versioned_docs/version-3.4/cli/_partials
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,36 +27,36 @@ yarn global add loft.sh
27
27
<TabItem value = " mac" >
28
28
29
29
``` 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
31
31
```
32
32
33
33
</TabItem >
34
34
<TabItem value = " mac-arm" >
35
35
36
36
``` 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
38
38
```
39
39
40
40
</TabItem >
41
41
<TabItem value = " linux" >
42
42
43
43
``` 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
45
45
```
46
46
47
47
</TabItem >
48
48
<TabItem value = " linux-arm" >
49
49
50
50
``` 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
52
52
```
53
53
54
54
</TabItem >
55
55
<TabItem value = " windows" >
56
56
57
57
``` powershell {4}
58
58
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;
60
60
$env:Path += ";" + $Env:APPDATA + "\loft";
61
61
[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
62
62
```
You can’t perform that action at this time.
0 commit comments