Skip to content

Commit f64d396

Browse files
committed
Fix shorthands
1 parent 9c78563 commit f64d396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/wodby/ci/release/release.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,6 @@ var Cmd = &cobra.Command{
150150

151151
func init() {
152152
Cmd.Flags().StringVarP(&opts.tag, "tag", "t", "", "Name and optionally a tag in the 'name:tag' format. Use if you want to use custom docker registry")
153-
Cmd.Flags().StringVarP(&opts.latestBranch, "latest-branch", "t", "master", "Update latest tag when built from this branch")
154-
Cmd.Flags().BoolVar(&opts.branchTag, "branch-tag",false, "Additionally push tag with the current git branch name")
153+
Cmd.Flags().StringVarP(&opts.latestBranch, "latest-branch", "l", "master", "Update latest tag when built from this branch")
154+
Cmd.Flags().BoolVarP(&opts.branchTag, "branch-tag","b", false, "Additionally push tag with the current git branch name")
155155
}

0 commit comments

Comments
 (0)