projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8cd4177
)
svn import: wrong file open mode
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>
git-svnimport.perl
patch
|
blob
|
history
diff --git
a/git-svnimport.perl
b/git-svnimport.perl
index
ba9f818
..
2686f4a
100755
(executable)
--- 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>) {