summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorTorsten Bögershausen <tboegi@web.de>2013-04-26 09:18:16 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-26 16:52:11 (GMT)
commit56291c141e5c95f1210c72b080674ba36bcf054e (patch)
treea8e845adf3e77b203f652bf6d0d8e45e489841d3 /t
parent173f9a7145ab71d8ea916840836246afc6db66ef (diff)
downloadgit-56291c141e5c95f1210c72b080674ba36bcf054e.zip
git-56291c141e5c95f1210c72b080674ba36bcf054e.tar.gz
git-56291c141e5c95f1210c72b080674ba36bcf054e.tar.bz2
t9020: do not use export X=Y
The shell syntax "export X=Y" is not understood by all shells. Signed-off-by: Torsten Bögershausen <tboegi@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t9020-remote-svn.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t9020-remote-svn.sh b/t/t9020-remote-svn.sh
index 2d2f016..d9f6b73 100755
--- a/t/t9020-remote-svn.sh
+++ b/t/t9020-remote-svn.sh
@@ -74,7 +74,8 @@ test_expect_success REMOTE_SVN 'mark-file regeneration' '
'
test_expect_success REMOTE_SVN 'incremental imports must lead to the same head' '
- export SVNRMAX=3 &&
+ SVNRMAX=3 &&
+ export SVNRMAX &&
init_git &&
git fetch svnsim &&
test_cmp .git/refs/svn/svnsim/master .git/refs/remotes/svnsim/master &&