Skip to content

Commit

Permalink
Fix flags to long name
Browse files Browse the repository at this point in the history
  • Loading branch information
mizzy committed Nov 29, 2016
1 parent da1bd80 commit f232ce9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -19,8 +19,8 @@ func main() {
deploy bool
)

flag.StringVar(&configFile, "c", defaultConfigFile, "file which define pipeline")
flag.BoolVar(&version, "v", false, "print version string")
flag.StringVar(&configFile, "config", defaultConfigFile, "file which define pipeline")
flag.BoolVar(&version, "version", false, "print version string")
flag.BoolVar(&build, "build", false, "run build")
flag.BoolVar(&deploy, "deploy", false, "run deploy")

Expand Down

0 comments on commit f232ce9

Please sign in to comment.