From 7b5c640d05bb5fb290383bde9972c021e78f1531 Mon Sep 17 00:00:00 2001 From: Juergen Hoetzel Date: Thu, 27 Oct 2016 18:30:00 +0200 Subject: [PATCH] readme: Fix go get command "go get" requires a package name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52f9d12a..cda7dab6 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ export GOPATH=$HOME/gopath * For more information you can read the [GOPATH documentation](https://golang.org/cmd/go/#hdr-GOPATH_environment_variable). * Next download the mgmt code base, and switch to that directory: ``` -go get -u https://github.com/purpleidea/mgmt +go get -u github.com/purpleidea/mgmt cd $GOPATH/src/github.com/purpleidea/mgmt ``` * Get the remaining golang deps with `go get ./...`, or run `make deps` if you're comfortable with how we install them.