Changeset 284 in tailor
- Timestamp:
- 05/07/05 02:56:07 (8 years ago)
- Hash name:
- 20050507005607-97f81-27ebc103c6976c2743700f41ca559d5de7c893ec
- File:
-
- 1 edited
-
vcpx/darcs.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/darcs.py
r279 r284 197 197 """ 198 198 199 patchname=shrepr(changeset.revision) 200 199 201 c = SystemCommand(working_dir=root, 200 202 command="darcs pull --all --patches=%(patch)s") 201 output = c(output=True, patch= shrepr(changeset.revision))203 output = c(output=True, patch=patchname) 202 204 if c.exit_status: 203 205 raise ChangesetApplicationFailure("'darcs pull' returned status %d saying \"%s\"" % (c.exit_status, output.getvalue().strip())) 204 206 205 207 c = SystemCommand(working_dir=root, 206 command="darcs changes --last=1 --xml-output --summ") 207 last = changesets_from_darcschanges(c(output=True)) 208 changeset.entries.extend(last[0].entries) 208 command="darcs changes --patches=%(patch)s" 209 " --xml-output --summ") 210 last = changesets_from_darcschanges(c(output=True, patch=patchname)) 211 if last: 212 changeset.entries.extend(last[0].entries) 209 213 210 214 def _checkoutUpstreamRevision(self, basedir, repository, module, revision,
Note: See TracChangeset
for help on using the changeset viewer.
