projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b480f5c
)
lib-git-svn.sh: Fix quoting issues with paths containing shell metacharacters
author
Bryan Donlan
<bdonlan@fushizen.net>
Sun, 4 May 2008 05:37:57 +0000
(
01:37
-0400)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 5 May 2008 21:17:01 +0000
(14:17 -0700)
Signed-off-by: Bryan Donlan <bdonlan@fushizen.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-git-svn.sh
patch
|
blob
|
history
diff --git
a/t/lib-git-svn.sh
b/t/lib-git-svn.sh
index 9decd2e1e81cfcba9c2b407abb176eea73d37ed9..445df78cac05230df89a3efb1d5753589400aa32 100644
(file)
--- a/
t/lib-git-svn.sh
+++ b/
t/lib-git-svn.sh
@@
-20,12
+20,13
@@
then
fi
svnrepo=$PWD/svnrepo
+export svnrepo
perl -w -e "
use SVN::Core;
use SVN::Repos;
\$SVN::Core::VERSION gt '1.1.0' or exit(42);
-system(qw/svnadmin create --fs-type fsfs/,
'$svnrepo'
) == 0 or exit(41);
+system(qw/svnadmin create --fs-type fsfs/,
\$ENV{svnrepo}
) == 0 or exit(41);
" >&3 2>&4
x=$?
if test $x -ne 0