]> git.ipfire.org Git - thirdparty/git.git/blobdiff - contrib/fast-import/git-p4
Create a specific version of the read_pipe_lines command for p4 invocations
[thirdparty/git.git] / contrib / fast-import / git-p4
index 6ae0429c2dde435f8ae33991ad10f40485aefdc6..fc2a60dfee4e59587e269476ce0ae349d20c03c2 100755 (executable)
@@ -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)