Mercurial > dotfiles
diff unixSoft/bin/apply-patchbomb @ 339:07053ec3c643
Merge
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Fri, 18 Jul 2014 20:16:20 -0400 |
parents | 4b661cede8ad |
children | 0b8457903012 |
line wrap: on
line diff
--- a/unixSoft/bin/apply-patchbomb +++ b/unixSoft/bin/apply-patchbomb @@ -19,7 +19,7 @@ def main(): cmp=lambda x,y: cmp(x.subject(), y.subject()))) for m in messages: print 'Applying', m.subject() - p = subprocess.Popen(['hg', 'import', '-'], stdin=subprocess.PIPE) + p = subprocess.Popen(['hg', 'import', '--partial', '--obsolete', '-'], stdin=subprocess.PIPE) p.stdin.write(m.source()) p.stdin.close() if p.wait() != 0: