summaryrefslogtreecommitdiff
path: root/cmd/ponzu/main.go
diff options
context:
space:
mode:
authorOllie Phillips <oliver@eantics.co.uk>2017-02-24 15:34:11 +0000
committerOllie Phillips <oliver@eantics.co.uk>2017-02-24 15:34:11 +0000
commitbf58736dbf18193765bf8b0da113d5c6e477c001 (patch)
treee0c7559ab972743c49ddae5e670b015c0235f7d5 /cmd/ponzu/main.go
parentfff0a34cffd686c09144058cbba44146fabc42e5 (diff)
Added usageAdd to useage const
Diffstat (limited to 'cmd/ponzu/main.go')
-rw-r--r--cmd/ponzu/main.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go
index 494158d..e287fda 100644
--- a/cmd/ponzu/main.go
+++ b/cmd/ponzu/main.go
@@ -21,7 +21,7 @@ import (
var (
usage = usageHeader + usageNew + usageGenerate +
- usageBuild + usageRun + usageUpgrade + usageVersion
+ usageBuild + usageRun + usageUpgrade + usageAdd + usageVersion
port int
httpsport int
https bool
@@ -276,6 +276,12 @@ func main() {
os.Exit(0)
}
+ /*err := getAddon(args)
+ if err != nil {
+ fmt.Println(err)
+ os.Exit(1)
+ }*/
+
case "":
fmt.Println(usage)
fmt.Println(usageHelp)