Changeset 1505 in tailor


Ignore:
Timestamp:
05/19/08 16:56:46 (5 years ago)
Author:
lele@…
Hash name:
20080519145646-97f81-601999f077da856bdcc45a724bea7a48096ce37d
Message:

Addendum for #145, probably -P hasn't any effect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/cvsps.py

    r1504 r1505  
    388388            self.log.debug("registering %s directory deletion", path) 
    389389 
     390            # Since we are not going to issue cvs updates on whole 
     391            # directories but only on files, most probably the -P 
     392            # above has no effect: remove the deleted dir if it's still 
     393            # there. 
     394            if exists(join(self.repository.basedir, e.name)): 
     395                self.log.info("removing stale deleted directory %s", path) 
     396                rmtree(join(self.repository.basedir, e.name)) 
     397 
    390398        # Make sure all files are present on disk: CVS update does not 
    391399        # create them nor reports an error if the files have been 
Note: See TracChangeset for help on using the changeset viewer.