roblaszczak / vgt

The missing tool for Visualising Go Tests
https://threedots.tech/post/go-test-parallelism/
MIT License
111 stars 1 forks source link

fix installation command #2

Closed alexandear closed 4 days ago

alexandear commented 5 days ago

The PR fixes installation command in README.

Now, we have an error:

❯ go version
go version go1.23.2 darwin/arm64

❯ go install -u github.com/roblaszczak/vgt
flag provided but not defined: -u
usage: go install [build flags] [packages]
Run 'go help install' for details.

After:

❯ go install github.com/roblaszczak/vgt@latest
go: downloading github.com/roblaszczak/vgt v1.0.0
roblaszczak commented 4 days ago

Thx!