Show More
@@ -94,7 +94,7 b' def patch(strip, patchname, ui):' | |||||
94 | """apply the patch <patchname> to the working directory. |
|
94 | """apply the patch <patchname> to the working directory. | |
95 | a list of patched files is returned""" |
|
95 | a list of patched files is returned""" | |
96 | patcher = find_in_path('gpatch', os.environ.get('PATH', ''), 'patch') |
|
96 | patcher = find_in_path('gpatch', os.environ.get('PATH', ''), 'patch') | |
97 |
fp = os.popen(' |
|
97 | fp = os.popen('%s -p%d < "%s"' % (patcher, strip, patchname)) | |
98 | files = {} |
|
98 | files = {} | |
99 | for line in fp: |
|
99 | for line in fp: | |
100 | line = line.rstrip() |
|
100 | line = line.rstrip() |
General Comments 0
You need to be logged in to leave comments.
Login now