Skip to content

Commit ebcb7d2

Browse files
committed
fix: change default value of beta
1 parent bfb379a commit ebcb7d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/release/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func Install() {
5050
major = releaseCmd.Bool("major", false, "If release is a *major* one, will increment the x.0.0 ")
5151
minor = releaseCmd.Bool("minor", false, "If release is a *minor* one, will increment the 0.x.0 ")
5252
patch = releaseCmd.Bool("patch", false, "If release is a *patch*, will increment the 0.0.x ")
53-
beta = releaseCmd.String("beta", "beta", "If the release is a beta, to add/increment tag with `-beta.x` or mentioned string")
53+
beta = releaseCmd.String("beta", "", "If the release is a beta, to add/increment tag with `-beta.x` or mentioned string")
5454
tag = releaseCmd.String("tag", "", "The Tag to be taken as base")
5555
}
5656

0 commit comments

Comments
 (0)