diff options
Diffstat (limited to 'cmd/ponzu/build.go')
-rw-r--r-- | cmd/ponzu/build.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/ponzu/build.go b/cmd/ponzu/build.go index 0037355..d0f82eb 100644 --- a/cmd/ponzu/build.go +++ b/cmd/ponzu/build.go @@ -35,7 +35,7 @@ func buildPonzuServer() error { } var buildCmd = &cobra.Command{ - Use: "build", + Use: "build [flags]", Short: "build will build/compile the project to then be run.", Long: `From within your Ponzu project directory, running build will copy and move the necessary files from your workspace into the vendored directory, and @@ -47,7 +47,7 @@ project, if testing a different release of Go. Errors will be reported, but successful build commands return nothing.`, Example: `$ ponzu build (or) -$ ponzu -gocmd=go1.8rc1 build`, +$ ponzu build --gocmd=go1.8rc1`, RunE: func(cmd *cobra.Command, args []string) error { return buildPonzuServer() }, |