diff options
-rw-r--r-- | cmd/ponzu/add.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/ponzu/add.go b/cmd/ponzu/add.go index 2522a43..d7431ac 100644 --- a/cmd/ponzu/add.go +++ b/cmd/ponzu/add.go @@ -37,9 +37,8 @@ func getAddon(args []string) error { } // Copy to ./addons folder - // GOPATH can be a list delimited by ":" on Linux or ";" on Windows - // go get uses the first, this should parse out the first whatever the OS + // `go get` uses the first, this should parse out the first whatever the OS envGOPATH := os.Getenv("GOPATH") gopaths := strings.Split(envGOPATH, ":") gopath := gopaths[0] |