Skip to content

Commit 958f2db

Browse files
authored
chore: Update Go version in GVM readme for 1.24.4 (#106)
1 parent 420efdf commit 958f2db

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ examples for common shells.
88

99
bash:
1010

11-
`eval "$(gvm 1.24.3)"`
11+
`eval "$(gvm 1.24.4)"`
1212

1313
cmd.exe (for batch scripts `%i` should be substituted with `%%i`):
1414

15-
`FOR /f "tokens=*" %i IN ('"gvm.exe" 1.24.3') DO %i`
15+
`FOR /f "tokens=*" %i IN ('"gvm.exe" 1.24.4') DO %i`
1616

1717
powershell:
1818

19-
`gvm --format=powershell 1.24.3 | Invoke-Expression`
19+
`gvm --format=powershell 1.24.4 | Invoke-Expression`
2020

2121
gvm flags can be set via environment variables by setting `GVM_<flag>`. For
2222
example `--http-timeout` can be set via `GVM_HTTP_TIMEOUT=10m`.
@@ -36,7 +36,7 @@ Linux (amd64):
3636
# Linux Example (assumes ~/bin is in PATH).
3737
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-linux-amd64
3838
chmod +x ~/bin/gvm
39-
eval "$(gvm 1.24.3)"
39+
eval "$(gvm 1.24.4)"
4040
go version
4141
```
4242

@@ -46,7 +46,7 @@ Linux (arm64):
4646
# Linux Example (assumes ~/bin is in PATH).
4747
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-linux-arm64
4848
chmod +x ~/bin/gvm
49-
eval "$(gvm 1.24.3)"
49+
eval "$(gvm 1.24.4)"
5050
go version
5151
```
5252

@@ -56,7 +56,7 @@ macOS (universal):
5656
# macOS Example
5757
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-darwin-all
5858
chmod +x /usr/local/bin/gvm
59-
eval "$(gvm 1.24.3)"
59+
eval "$(gvm 1.24.4)"
6060
go version
6161
```
6262

@@ -65,13 +65,13 @@ Windows (PowerShell):
6565
```
6666
[Net.ServicePointManager]::SecurityProtocol = "tls12"
6767
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
68-
gvm --format=powershell 1.24.3 | Invoke-Expression
68+
gvm --format=powershell 1.24.4 | Invoke-Expression
6969
go version
7070
```
7171

7272
Fish Shell:
7373

74-
Use `gvm` with fish shell by executing `gvm 1.24.3 | source` in lieu of using `eval`.
74+
Use `gvm` with fish shell by executing `gvm 1.24.4 | source` in lieu of using `eval`.
7575

7676
For existing Go users:
7777

0 commit comments

Comments
 (0)