refactor: match logging for dry run

This commit is contained in:
decentral1se 2021-12-19 23:50:29 +01:00
parent 5113db1612
commit 9c8e6b63a6
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 4 additions and 4 deletions

View File

@ -186,7 +186,7 @@ You may invoke this command in "wizard" mode and be prompted for input:
tagString = fmt.Sprintf("%s+%s", tag.String(), mainAppVersion) tagString = fmt.Sprintf("%s+%s", tag.String(), mainAppVersion)
if internal.Dry { if internal.Dry {
hash := abraFormatter.SmallSHA(head.Hash().String()) hash := abraFormatter.SmallSHA(head.Hash().String())
logrus.Info(fmt.Sprintf("dry run only: NOT creating tag %s at %s", tagString, hash)) logrus.Info(fmt.Sprintf("dry run: not creating tag %s at %s", tagString, hash))
return nil return nil
} }
@ -199,7 +199,7 @@ You may invoke this command in "wizard" mode and be prompted for input:
} }
logrus.Info(fmt.Sprintf("pushed tag %s to remote", tagString)) logrus.Info(fmt.Sprintf("pushed tag %s to remote", tagString))
} else { } else {
logrus.Info("dry run only: NOT pushing changes") logrus.Info("dry run: no changes pushed")
} }
return nil return nil
@ -261,7 +261,7 @@ You may invoke this command in "wizard" mode and be prompted for input:
newtagString = newTag.String() newtagString = newTag.String()
if internal.Dry { if internal.Dry {
hash := abraFormatter.SmallSHA(head.Hash().String()) hash := abraFormatter.SmallSHA(head.Hash().String())
logrus.Info(fmt.Sprintf("dry run only: NOT creating tag %s at %s", newtagString, hash)) logrus.Info(fmt.Sprintf("dry run: not creating tag %s at %s", newtagString, hash))
return nil return nil
} }
@ -274,7 +274,7 @@ You may invoke this command in "wizard" mode and be prompted for input:
} }
logrus.Info(fmt.Sprintf("pushed tag %s to remote", newtagString)) logrus.Info(fmt.Sprintf("pushed tag %s to remote", newtagString))
} else { } else {
logrus.Info("gry run only: NOT pushing changes") logrus.Info("dry run: no changes pushed")
} }
return nil return nil