diff --git a/cmd/update-version/main.go b/cmd/update-version/main.go index 5b5a54a4..42fbc818 100644 --- a/cmd/update-version/main.go +++ b/cmd/update-version/main.go @@ -41,12 +41,7 @@ func main() { return } - // Lot the result & some easy-to-copy Git commands: - commitMsg := fmt.Sprintf("Bumped version to %s", cliArgs.newVersion) - tagMsg := fmt.Sprintf("Tagged version %s", cliArgs.newVersion) - log.Info().Msg("file replacement done, commit with:") - log.Info().Msgf("git commit -m %q %s %s", commitMsg, makefileFile, addonVersionFile) - log.Info().Msgf("git tag -a -m %q v%s", tagMsg, cliArgs.newVersion) + log.Info().Msg("file replacement done") } func parseCliArgs() {