diff options
author | Ollie Phillips <oliver@eantics.co.uk> | 2017-02-24 17:16:19 +0000 |
---|---|---|
committer | Ollie Phillips <oliver@eantics.co.uk> | 2017-02-24 17:16:19 +0000 |
commit | 522eab3f9ba4297cf44685cf5e79902b90833845 (patch) | |
tree | d10abec6599645b3ed410d6787fbfd7e5a52128b /cmd/ponzu/add.go | |
parent | 58e3755af5f1c49ee00dc4d0ccb06fcac4c2706d (diff) |
missed get in exec.command
Diffstat (limited to 'cmd/ponzu/add.go')
-rw-r--r-- | cmd/ponzu/add.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ponzu/add.go b/cmd/ponzu/add.go index d7431ac..d0569c0 100644 --- a/cmd/ponzu/add.go +++ b/cmd/ponzu/add.go @@ -22,7 +22,7 @@ func getAddon(args []string) error { var addonPath = args[1] // Go get - cmdOptions = append(cmdOptions, addonPath) + cmdOptions = append(cmdOptions, "get", addonPath) get := exec.Command(gocmd, cmdOptions...) get.Stderr = os.Stderr get.Stdout = os.Stdout |