fix(cmd/commands/next): initialize force flag with default bool 'false'

This commit is contained in:
Felix Wiedmann
2019-06-17 22:26:32 +02:00
parent f417929def
commit 065070657c

View File

@@ -7,6 +7,8 @@ import (
func init() { func init() {
rootCmd.AddCommand(releaseCmd) rootCmd.AddCommand(releaseCmd)
releaseCmd.Flags().BoolP("force", "f", false, "")
} }
var releaseCmd = &cobra.Command{ var releaseCmd = &cobra.Command{