aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorTor Arvid Lund <torarvid@gmail.com>2008-08-21 23:11:40 +0200
committerJunio C Hamano <gitster@pobox.com>2008-08-22 22:40:13 -0700
commit893d340f2c735dc85b9360556ccd46cc0bf27fc0 (patch)
treeb3bbc26457bf13ac11f2136a692935ac5a121985 /contrib
parentf135aacb5ae30b54bac0dde7462b532d19e4c0d6 (diff)
downloadgit-893d340f2c735dc85b9360556ccd46cc0bf27fc0.tar.gz
git-893d340f2c735dc85b9360556ccd46cc0bf27fc0.tar.xz
git-p4: Fix one-liner in p4_write_pipe function.
The function built a p4 command string via the p4_build_cmd function, but ignored the result. Signed-off-by: Tor Arvid Lund <torarvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/fast-import/git-p42
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4
index f9865b444..46136d49b 100755
--- a/contrib/fast-import/git-p4
+++ b/contrib/fast-import/git-p4
@@ -76,7 +76,7 @@ def write_pipe(c, str):
def p4_write_pipe(c, str):
real_cmd = p4_build_cmd(c)
- return write_pipe(c, str)
+ return write_pipe(real_cmd, str)
def read_pipe(c, ignore_error=False):
if verbose: