diff options
author | Martin Treusch von Buttlar <martin.tvb@vitraum.de> | 2017-05-17 07:19:05 +0200 |
---|---|---|
committer | Martin Treusch von Buttlar <martin.tvb@vitraum.de> | 2017-05-17 07:19:05 +0200 |
commit | 99bae528846f2fb900ff1168c1e143181f89e597 (patch) | |
tree | 9a21c49f095eb33c28a45fbaa6a20db1f401434c /cmd/ponzu/add.go | |
parent | fa6a4907557b79f2da6835074233bec717725105 (diff) |
add shorthand commands for add, generate, serve and version
Diffstat (limited to 'cmd/ponzu/add.go')
-rw-r--r-- | cmd/ponzu/add.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/ponzu/add.go b/cmd/ponzu/add.go index 7832b4e..533c171 100644 --- a/cmd/ponzu/add.go +++ b/cmd/ponzu/add.go @@ -13,8 +13,9 @@ import ( ) var addCmd = &cobra.Command{ - Use: "add <repo>", - Short: "Downloads addon from specified import path", + Use: "add <repo>", + Aliases: []string{"a"}, + Short: "Downloads addon from specified import path", Long: `Downloads addon from specified import path to $GOPATH/src and copys it to the current project's ./addons directory. Must be called from within a Ponzu project directory.`, |