diff options
author | 2008-08-21 23:11:40 +0200 | |
---|---|---|
committer | 2008-08-22 22:40:13 -0700 | |
commit | 893d340f2c735dc85b9360556ccd46cc0bf27fc0 (patch) | |
tree | b3bbc26457bf13ac11f2136a692935ac5a121985 /contrib/fast-import | |
parent | Completion: add missing '=' for 'diff --diff-filter' (diff) | |
download | tgif-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/fast-import')
-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: |