##// END OF EJS Templates
patch: add debug message to show external patch tool invocation...
Augie Fackler -
r38103:f3776f70 default
parent child Browse files
Show More
@@ -2113,6 +2113,7 b' def _externalpatch(ui, repo, patcher, pa'
2113 2113 args.append('-d %s' % procutil.shellquote(cwd))
2114 2114 cmd = ('%s %s -p%d < %s'
2115 2115 % (patcher, ' '.join(args), strip, procutil.shellquote(patchname)))
2116 ui.debug('Using external patch tool: %s\n' % cmd)
2116 2117 fp = procutil.popen(cmd, 'rb')
2117 2118 try:
2118 2119 for line in util.iterfile(fp):
General Comments 0
You need to be logged in to leave comments. Login now