@@ -7,15 +7,15 @@ https://go.dev/dl or build it from source. Below are examples for common shells.
77
88bash:
99
10- ` eval "$(gvm 1.25.4 )" `
10+ ` eval "$(gvm 1.25.7 )" `
1111
1212cmd.exe (for batch scripts ` %i ` should be substituted with ` %%i ` ):
1313
14- ` FOR /f "tokens=*" %i IN ('"gvm.exe" 1.25.4 ') DO %i `
14+ ` FOR /f "tokens=*" %i IN ('"gvm.exe" 1.25.7 ') DO %i `
1515
1616powershell:
1717
18- ` gvm --format=powershell 1.25.4 | Invoke-Expression `
18+ ` gvm --format=powershell 1.25.7 | Invoke-Expression `
1919
2020gvm flags can be set via environment variables by setting ` GVM_<flag> ` . For
2121example ` --http-timeout ` can be set via ` GVM_HTTP_TIMEOUT=10m ` .
@@ -35,7 +35,7 @@ Linux (amd64):
3535# Linux Example (assumes ~/bin is in PATH).
3636curl -sL -o ~ /bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-linux-amd64
3737chmod +x ~ /bin/gvm
38- eval " $( gvm 1.25.4 ) "
38+ eval " $( gvm 1.25.7 ) "
3939go version
4040```
4141
@@ -45,7 +45,7 @@ Linux (arm64):
4545# Linux Example (assumes ~/bin is in PATH).
4646curl -sL -o ~ /bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-linux-arm64
4747chmod +x ~ /bin/gvm
48- eval " $( gvm 1.25.4 ) "
48+ eval " $( gvm 1.25.7 ) "
4949go version
5050```
5151
@@ -55,7 +55,7 @@ macOS (universal):
5555# macOS Example
5656curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-darwin-all
5757chmod +x /usr/local/bin/gvm
58- eval " $( gvm 1.25.4 ) "
58+ eval " $( gvm 1.25.7 ) "
5959go version
6060```
6161
@@ -64,13 +64,13 @@ Windows (PowerShell):
6464```
6565[Net.ServicePointManager]::SecurityProtocol = "tls12"
6666Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.6.0/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
67- gvm --format=powershell 1.25.4 | Invoke-Expression
67+ gvm --format=powershell 1.25.7 | Invoke-Expression
6868go version
6969```
7070
7171Fish Shell:
7272
73- Use ` gvm ` with fish shell by executing ` gvm 1.25.4 | source ` in lieu of using ` eval ` .
73+ Use ` gvm ` with fish shell by executing ` gvm 1.25.7 | source ` in lieu of using ` eval ` .
7474
7575For existing Go users:
7676
0 commit comments