fix: remove unexpanded var
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
cellarspoon 2021-12-22 01:50:17 +01:00
parent 04b58230ea
commit 3a27d9d9fb
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410

View File

@ -257,7 +257,7 @@ func commitRelease(recipe recipe.Recipe) error {
if internal.CommitMessage == "" && !internal.NoInput && internal.Commit {
prompt := &survey.Input{
Message: "commit message",
Default: "chore: publish new %s version",
Default: "chore: publish new version",
}
if err := survey.AskOne(prompt, &internal.CommitMessage); err != nil {
return err