fix: more fixed for dry mode, this time tested :)

Follows 299276c383.
This commit is contained in:
2021-12-31 13:36:46 +01:00
parent 299276c383
commit ce96269be0
3 changed files with 13 additions and 5 deletions

View File

@ -11,7 +11,7 @@ import (
// CreateRemote creates a new git remote in a repository
func CreateRemote(repo *git.Repository, name, url string, dryRun bool) error {
if dryRun {
logrus.Infof("dry run: remote %s (%s) not created", name, url)
logrus.Debugf("dry run: remote %s (%s) not created", name, url)
return nil
}