Mercurial > dotfiles
changeset 339:07053ec3c643
Merge
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Fri, 18 Jul 2014 20:16:20 -0400 |
parents | 3f3d52956ff7 (current diff) 4b661cede8ad (diff) |
children | 1b4b235482c5 |
files | |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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: