Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-p4: Fix one-liner in p4_write_pipe function.
author
Tor Arvid Lund
<torarvid@gmail.com>
Thu, 21 Aug 2008 21:11:40 +0000
(23:11 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Sat, 23 Aug 2008 05:40:13 +0000
(22:40 -0700)
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>
contrib/fast-import/git-p4
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
f135aac
)
diff --git
a/contrib/fast-import/git-p4
b/contrib/fast-import/git-p4
index f9865b444fdf8b21211b04e9dba2999dd90cbc23..46136d49bf99f61a5c85a548bec055742ed140f8 100755
(executable)
--- 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: