Changeset 1624 in tailor
- Timestamp:
- 06/05/08 02:00:15 (5 years ago)
- Hash name:
- 20080605000015-97f81-67ba6ed10052d880714669d213baae9c1c9bbc45
- Location:
- vcpx
- Files:
-
- 3 edited
-
repository/darcs/__init__.py (modified) (1 diff)
-
dualwd.py (modified) (1 diff)
-
repository/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository/darcs/__init__.py
r1574 r1624 21 21 class DarcsRepository(Repository): 22 22 METADIR = '_darcs' 23 24 # Darcs needs the deletion, because of the new way the backend assemble 25 # the new patches by writing directly to the pending file. 26 EXTRA_RSYNC_FLAGS = ['--delete'] 23 27 24 28 def _load(self, project): -
vcpx/dualwd.py
r1623 r1624 120 120 if not (now-last).seconds: 121 121 cmd.append('--ignore-times') 122 # Add per target specific flags 123 if self.target.repository.EXTRA_RSYNC_FLAGS: 124 cmd.extend(self.target.repository.EXTRA_RSYNC_FLAGS) 122 125 self._last_rsync = now 123 126 for md in IGNORED_METADIRS: -
vcpx/repository/__init__.py
r1605 r1624 36 36 """ 37 37 The name of the external command line tool, for some backends. 38 """ 39 40 EXTRA_RSYNC_FLAGS = None 41 """ 42 Particular flags for rsync, used by disjunct working dirs. 38 43 """ 39 44
Note: See TracChangeset
for help on using the changeset viewer.
