summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b340fa4)
raw | patch | inline | side by side (parent: b340fa4)
author | Anand Kumria <wildfire@progsoc.org> | |
Sun, 10 Aug 2008 18:26:26 +0000 (19:26 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 12 Aug 2008 01:57:03 +0000 (18:57 -0700) |
Similiar to our 'p4_read_pipe_lines' command, we can isolate
specific changes to the invocation method in the one location
with this change.
Signed-off-by: Anand Kumria <wildfire@progsoc.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
specific changes to the invocation method in the one location
with this change.
Signed-off-by: Anand Kumria <wildfire@progsoc.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/fast-import/git-p4 | patch | blob | history |
index 3deaa42559c38484395a81d9ac0963e279878a84..08acd517ba1c1778857ec1de7802a587ac5bcaf8 100755 (executable)
if os.system(cmd) != 0:
die("command failed: %s" % cmd)
+def p4_system(cmd):
+ """Specifically invoke p4 as the system command. """
+ real_cmd = "%s %s" % ("p4", cmd)
+ if verbose:
+ print real_cmd
+ return system(real_cmd)
+
def isP4Exec(kind):
"""Determine if a Perforce 'kind' should have execute permission