diff options
author | Steve Manuel <nilslice@gmail.com> | 2018-05-09 12:16:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-09 12:16:36 -0600 |
commit | 1c1a87c57b6407a41b30e0eb9416f03f4b118aac (patch) | |
tree | d0ce6a43ae1227c51d856dad381106c0f84b7bcf /cmd/ponzu/add.go | |
parent | dab54818334b4bccecbe3c322b0d21bf364d165a (diff) |
merge contributions (#246)
* expanded help to mention need to import addon (#243)
* Remove unused extra backtick (#239)
* remove import for golang.org/net/x/http2, co-locate error message
* update CI code to run --dev if on ponzu-dev branch
* CI: ensure we have latest from ponzu-dev branch
Diffstat (limited to 'cmd/ponzu/add.go')
-rw-r--r-- | cmd/ponzu/add.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/ponzu/add.go b/cmd/ponzu/add.go index f4b9fea..62824b1 100644 --- a/cmd/ponzu/add.go +++ b/cmd/ponzu/add.go @@ -16,7 +16,8 @@ var addCmd = &cobra.Command{ 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.`, +current project's addons directory. Must be called from within a Ponzu project directory. Addon +needs to imported in at least one content item for it to be included in the Ponzu server build.`, Example: `$ ponzu add github.com/bosssauce/fbscheduler`, RunE: func(cmd *cobra.Command, args []string) error { // expecting two args, add/a and the go gettable package uri |