@@ -8,15 +8,15 @@ shells.
8
8
9
9
bash:
10
10
11
- ` eval "$(gvm 1.15.6 )" `
11
+ ` eval "$(gvm 1.17.2 )" `
12
12
13
13
cmd.exe (for batch scripts ` %i ` should be substituted with ` %%i ` ):
14
14
15
- ` FOR /f "tokens=*" %i IN ('"gvm.exe" 1.15.6 ') DO %i `
15
+ ` FOR /f "tokens=*" %i IN ('"gvm.exe" 1.17.2 ') DO %i `
16
16
17
17
powershell:
18
18
19
- ` gvm --format=powershell 1.15.6 | Invoke-Expression `
19
+ ` gvm --format=powershell 1.17.2 | Invoke-Expression `
20
20
21
21
Installation
22
22
------------
@@ -31,35 +31,35 @@ Linux:
31
31
32
32
``` bash
33
33
# Linux Example (assumes ~/bin is in PATH).
34
- curl -sL -o ~ /bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.0 /gvm-linux-amd64
34
+ curl -sL -o ~ /bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1 /gvm-linux-amd64
35
35
chmod +x ~ /bin/gvm
36
- eval " $( gvm 1.15.6 ) "
36
+ eval " $( gvm 1.17.2 ) "
37
37
go version
38
38
```
39
39
40
40
macOS:
41
41
42
42
``` bash
43
43
# macOS Example
44
- curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.0 /gvm-darwin-amd64
44
+ curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1 /gvm-darwin-amd64
45
45
chmod +x /usr/local/bin/gvm
46
- eval " $( gvm 1.15.6 ) "
46
+ eval " $( gvm 1.17.2 ) "
47
47
go version
48
48
```
49
49
50
50
Windows (Powershell):
51
51
52
52
```
53
53
[Net.ServicePointManager]::SecurityProtocol = "tls12"
54
- Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.0 /gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
55
- gvm --format=powershell 1.15.6 | Invoke-Expression
54
+ Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.1 /gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
55
+ gvm --format=powershell 1.17.2 | Invoke-Expression
56
56
go version
57
57
```
58
58
59
59
Fish Shell:
60
60
61
- Use ` gvm ` with fish shell by executing ` gvm 1.15.6 | source ` in lieu of using ` eval ` .
61
+ Use ` gvm ` with fish shell by executing ` gvm 1.17.2 | source ` in lieu of using ` eval ` .
62
62
63
63
For existing Go users:
64
64
65
- ` go get -u github.com/andrewkroh/gvm/cmd/gvm `
65
+ ` go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.1 `
0 commit comments