Skip to content

Commit ea55b45

Browse files
authored
Fix command to install vultr-cli using Go
Command: go get -u github.com/vultr/vultr-cli/v3 doesn't seem to work any longer, it returns: go: go.mod file not found in current directory or any parent directory. 'go get' is no longer supported outside a module. To build and install a command, use 'go install' with a version, like 'go install example.com/cmd@latest' For more information, see https://golang.org/doc/go-get-install-deprecation or run 'go help get' or 'go help install'.
1 parent 8b30bd0 commit ea55b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If you are to visit the `vultr-cli` [releases](https://github.com/vultr/vultr-cl
6969

7070
You will need Go installed on your machine in order to work with the source (and make if you decide to pull the repo down).
7171

72-
`go get -u github.com/vultr/vultr-cli/v3`
72+
`go install github.com/vultr/vultr-cli/v3@latest`
7373

7474
Another way to build from source is to
7575

0 commit comments

Comments
 (0)