From: Anand Kumria Date: Sun, 10 Aug 2008 18:26:24 +0000 (+0100) Subject: Create a specific version of the read_pipe_lines command for p4 invocations X-Git-Tag: v1.6.0~2^2~13 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2318121babea786390f51796bfce17088c3420ee;p=git.git Create a specific version of the read_pipe_lines command for p4 invocations This will make it easier to isolate changes to how 'p4' is invoked (whether with parameters or not, etc.). Signed-off-by: Anand Kumria Signed-off-by: Junio C Hamano --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 6ae0429c2..fc2a60dfe 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -57,6 +57,13 @@ def read_pipe_lines(c): return val +def p4_read_pipe_lines(c): + """Specifically invoke p4 on the command supplied. """ + real_cmd = "%s %s" % ("p4", c) + if verbose: + print real_cmd + return read_pipe_lines(real_cmd) + def system(cmd): if verbose: sys.stderr.write("executing %s\n" % cmd)