diff options
author | Tor Arvid Lund <torarvid@gmail.com> | 2008-08-21 23:11:40 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-22 22:40:13 -0700 |
commit | 893d340f2c735dc85b9360556ccd46cc0bf27fc0 (patch) | |
tree | b3bbc26457bf13ac11f2136a692935ac5a121985 /contrib | |
parent | f135aacb5ae30b54bac0dde7462b532d19e4c0d6 (diff) | |
download | git-893d340f2c735dc85b9360556ccd46cc0bf27fc0.tar.gz |
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-x | contrib/fast-import/git-p4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index f9865b444f..46136d49bf 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: |