diff options
| -rw-r--r-- | doNormal.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doNormal.go b/doNormal.go index cf71d34..cf333fd 100644 --- a/doNormal.go +++ b/doNormal.go @@ -225,7 +225,9 @@ func checkNormalRepoState(repo *gitpb.Repo) error { } if repo.IsBranchRemote(repo.GetUserBranchName()) { - log.Info(repo.FullPath) + if env.Verbose() { + log.Info("user branch is remote:", repo.FullPath) + } } // check to see if the user branch is behind the devel branch |
