~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to shelf.py

Use patch -p0 not -p1 bzr diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    patch = open(shelf, 'r').read()
38
38
 
39
39
    print >>sys.stderr, "Reapplying shelved patches"
40
 
    pipe = os.popen('patch -d %s -s -p1' % root, 'w')
 
40
    pipe = os.popen('patch -d %s -s -p0' % root, 'w')
41
41
    pipe.write(patch)
42
42
    pipe.flush()
43
43
 
77
77
    shelf.close()
78
78
 
79
79
    print >>sys.stderr, "Reverting shelved patches"
80
 
    pipe = os.popen('patch -d %s -sR -p1' % root, 'w')
 
80
    pipe = os.popen('patch -d %s -sR -p0' % root, 'w')
81
81
    for patch in patches:
82
82
       pipe.write(str(patch))
83
83
    pipe.flush()