Skip to content

Commit 3ac4aa2

Browse files
authored
README.md: remove -u flag from go get (#415)
1 parent 9c147ed commit 3ac4aa2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Go 1.4+ is required on Windows (otherwise you must use MinGW v4.8.1 exactly, see [Go issue 8811](https://github.com/golang/go/issues/8811)).
1818

1919
```
20-
go get -u github.com/go-gl/glfw/v3.4/glfw
20+
go get github.com/go-gl/glfw/v3.4/glfw
2121
```
2222

2323
### OpenGL ES
@@ -26,7 +26,7 @@ If your target system only provides an OpenGL ES implementation (true for some A
2626
You do this by defining the appropriate build tags, e.g.
2727

2828
```
29-
go get -u -tags=gles2 github.com/go-gl/glfw/v3.4/glfw
29+
go get -tags=gles2 github.com/go-gl/glfw/v3.4/glfw
3030
```
3131

3232
Supported tags are `gles1`, `gles2`, `gles3` and `vulkan`.

0 commit comments

Comments
 (0)