diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-17 07:38:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-17 07:38:19 +0000 |
commit | 4e4caf890fd53e02c43708e513dbbb6f2ea0aa6e (patch) | |
tree | 6c8226fa88d87b51f427b9683147787f5b02add0 | |
parent | 98b65b28966b61d1bc4f466ef403e07fda53ea5b (diff) | |
download | portage-4e4caf890fd53e02c43708e513dbbb6f2ea0aa6e.tar.gz portage-4e4caf890fd53e02c43708e513dbbb6f2ea0aa6e.tar.bz2 portage-4e4caf890fd53e02c43708e513dbbb6f2ea0aa6e.zip |
dont dump debug update info in quiet mode
svn path=/main/trunk/; revision=3170
-rwxr-xr-x | bin/repoman | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/repoman b/bin/repoman index 7ad540fc8..9acc68b3e 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1510,9 +1510,10 @@ else: print "*",green(str(len(myupdates))),"files being committed...",green(str(len(myheaders))),"have headers that will change." print "*","Files with headers will cause the manifests to be made and recommited." - print "myupdates:",myupdates - print "myheaders:",myheaders - print + if quiet == 0: + print "myupdates:",myupdates + print "myheaders:",myheaders + print unlinkfile=0 if not (commitmessage or commitmessagefile): print "Please enter a CVS commit message at the prompt:" |