File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ image: Visual Studio 2015
77environment :
88 GOPATH : c:\gopath
99 GO111MODULE : on
10- GVM_GO_VERSION : 1.17.7
10+ GVM_GO_VERSION : 1.17.6
1111 GVM_DL : https://github.com/andrewkroh/gvm/releases/download/v0.3.0/gvm-windows-amd64.exe
1212
1313# Custom clone folder (variables are not expanded here).
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ shells.
88
99bash:
1010
11- ` eval "$(gvm 1.17.7 )" `
11+ ` eval "$(gvm 1.17.6 )" `
1212
1313cmd.exe (for batch scripts ` %i ` should be substituted with ` %%i ` ):
1414
15- ` FOR /f "tokens=*" %i IN ('"gvm.exe" 1.17.7 ') DO %i `
15+ ` FOR /f "tokens=*" %i IN ('"gvm.exe" 1.17.6 ') DO %i `
1616
1717powershell:
1818
19- ` gvm --format=powershell 1.17.7 | Invoke-Expression `
19+ ` gvm --format=powershell 1.17.6 | Invoke-Expression `
2020
2121gvm flags can be set via environment variables by setting GVM_ <flag >. For
2222example ` --http-timeout ` can be set via ` GVM_HTTP_TIMEOUT=10m ` .
3636# Linux Example (assumes ~/bin is in PATH).
3737curl -sL -o ~ /bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.4.0/gvm-linux-amd64
3838chmod +x ~ /bin/gvm
39- eval " $( gvm 1.17.7 ) "
39+ eval " $( gvm 1.17.6 ) "
4040go version
4141```
4242
4646# macOS Example
4747curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.4.0/gvm-darwin-amd64
4848chmod +x /usr/local/bin/gvm
49- eval " $( gvm 1.17.7 ) "
49+ eval " $( gvm 1.17.6 ) "
5050go version
5151```
5252
@@ -55,13 +55,13 @@ Windows (Powershell):
5555```
5656[Net.ServicePointManager]::SecurityProtocol = "tls12"
5757Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.4.0/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
58- gvm --format=powershell 1.17.7 | Invoke-Expression
58+ gvm --format=powershell 1.17.6 | Invoke-Expression
5959go version
6060```
6161
6262Fish Shell:
6363
64- Use ` gvm ` with fish shell by executing ` gvm 1.17.7 | source ` in lieu of using ` eval ` .
64+ Use ` gvm ` with fish shell by executing ` gvm 1.17.6 | source ` in lieu of using ` eval ` .
6565
6666For existing Go users:
6767
Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ binary versions of Go from https://storage.googleapis.com/golang. Below are
1515examples for common shells.
1616
1717 bash:
18- eval "$(gvm 1.17.7 )"
18+ eval "$(gvm 1.17.6 )"
1919
2020 batch (windows cmd.exe):
21- FOR /f "tokens=*" %i IN ('"gvm.exe" 1.17.7 ') DO %i
21+ FOR /f "tokens=*" %i IN ('"gvm.exe" 1.17.6 ') DO %i
2222
2323 powershell:
24- gvm --format=powershell 1.17.7 | Invoke-Expression
24+ gvm --format=powershell 1.17.6 | Invoke-Expression
2525
2626gvm flags can be set via environment variables by setting GVM_<flag>. For
2727example --http-timeout can be set via GVM_HTTP_TIMEOUT=10m.
You can’t perform that action at this time.
0 commit comments