summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8cd4177)
raw | patch | inline | side by side (parent: 8cd4177)
author | Matthias Urlichs <smurf@smurf.noris.de> | |
Mon, 10 Oct 2005 12:18:38 +0000 (14:18 +0200) | ||
committer | Matthias Urlichs <smurf@smurf.noris.de> | |
Mon, 10 Oct 2005 12:18:38 +0000 (14:18 +0200) |
There are multiple | characters in Unicode. Don't use the wrong one ...
Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>
Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>
git-svnimport.perl | patch | blob | history |
diff --git a/git-svnimport.perl b/git-svnimport.perl
index ba9f818a06341a414eb8d21fa8ad29d225895f20..2686f4a63ad59173265c308070760f4bfabacc39 100755 (executable)
--- a/git-svnimport.perl
+++ b/git-svnimport.perl
}
if(@old) {
- open my $F, "-│", "git-ls-files", "-z", @old or die $!;
+ open my $F, "-|", "git-ls-files", "-z", @old or die $!;
@old = ();
local $/ = '\0';
while(<$F>) {