diff --git a/internal/cmd/root.go b/internal/cmd/root.go index c1a9f59..1f83831 100644 --- a/internal/cmd/root.go +++ b/internal/cmd/root.go @@ -72,7 +72,7 @@ func NewRootCommand(c *config.Config) *cobra.Command { rootCmd.PersistentFlags().StringVar(&c.GitPass, "git-pass", "", "Git user password") rootCmd.PersistentFlags().StringVar(&c.GitEmail, "git-email", "", "Git email address") rootCmd.PersistentFlags().StringVar(&c.GPGKey, "signing-key", "", "Path to the GPG signing key") - rootCmd.Flags().StringSliceVar(&c.Sequence, "sequence", nil, "Command sequence to execute multiple functions") + rootCmd.Flags().StringArrayVar(&c.Sequence, "sequence", nil, "Command sequence to execute multiple functions") return rootCmd }