Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Urlichs <smurf@smurf.noris.de>2005-10-10 16:18:38 +0400
committerMatthias Urlichs <smurf@smurf.noris.de>2005-10-10 16:18:38 +0400
commitc7ff5f1d7d6f103802fd6d6b1d4dcdf095e95d5f (patch)
treeebdaf82dd41825d22b4b5874b160db28bff6036d /git-svnimport.perl
parent8cd4177d5ef651c8acb9c1f113a076e6fae2e1c2 (diff)
svn import: wrong file open mode
There are multiple | characters in Unicode. Don't use the wrong one ... Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>
Diffstat (limited to 'git-svnimport.perl')
-rwxr-xr-xgit-svnimport.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svnimport.perl b/git-svnimport.perl
index ba9f818a06..2686f4a63a 100755
--- a/git-svnimport.perl
+++ b/git-svnimport.perl
@@ -440,7 +440,7 @@ sub commit {
}
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>) {