diff options
| author | Jeff Carr <[email protected]> | 2025-10-27 00:25:46 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-27 00:25:46 -0500 | 
| commit | a0dae603e2de74f0184991dff2bddf14d27a65ed (patch) | |
| tree | a08b1562396342eb83cbd7c30cef4ad30aed84d8 | |
| parent | 75e2ee9c01f001d5ac01dedd631826de5457fe10 (diff) | |
still wish this was ENV.Get()
| -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  | 
