diff options
author | Ollie Phillips <oliver@eantics.co.uk> | 2017-02-24 17:07:31 +0000 |
---|---|---|
committer | Ollie Phillips <oliver@eantics.co.uk> | 2017-02-24 17:07:31 +0000 |
commit | 0c16e95b243d909fe9a87e5e1fd259504ae091b6 (patch) | |
tree | 58ecd2cf10262ff9b171b3deb3d20c8cdaa20a7d /cmd/ponzu/add.go | |
parent | 586e877ff564484fdeac636baf5c49d6bc97c037 (diff) |
Comment improvement
Diffstat (limited to 'cmd/ponzu/add.go')
-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] |