diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-08-09 03:05:54 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-08-09 03:05:54 +0000 |
commit | 9ecf8d19aff5e67e9ab61bbea2f7804095e71dd3 (patch) | |
tree | e65913a2094d6d1d67f00c4d71c93dce82845233 | |
parent | 2d924d424dbf1485434f5bea993aab6505418174 (diff) | |
download | portage-9ecf8d19aff5e67e9ab61bbea2f7804095e71dd3.tar.gz portage-9ecf8d19aff5e67e9ab61bbea2f7804095e71dd3.tar.bz2 portage-9ecf8d19aff5e67e9ab61bbea2f7804095e71dd3.zip |
Remove a dead hunk of code spotted by antarus.
svn path=/main/trunk/; revision=4208
-rwxr-xr-x | bin/repoman | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/repoman b/bin/repoman index 6cb7abbc3..572dd4f73 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1486,22 +1486,6 @@ else: print sys.exit(1) - mymissing=None - if mymissing: - print "The following files are obviously missing from your cvs tree" - print "and are being fetched so we can continue:" - for x in mymissing: - print " ",x - if "--pretend" in myoptions: - print "(/usr/bin/cvs -q up "+string.join(mymissing)+")" - retval=0 - else: - retval=os.system("/usr/bin/cvs -q up "+string.join(mymissing)) - if retval: - print "!!! Exiting on cvs (shell) error code:",retval - sys.exit(retval) - del mymissing - retval=["",""] if isCvs: print "Performing a "+green("cvs -n up")+" with a little magic grep to check for updates." |