From: Torsten Bögershausen Date: Fri, 26 Apr 2013 09:18:16 +0000 (+0200) Subject: t9020: do not use export X=Y X-Git-Tag: v1.8.2.2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=56291c141e5c95f1210c72b080674ba36bcf054e;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/t/t9020-remote-svn.sh b/t/t9020-remote-svn.sh index 2d2f016f6f..d9f6b73ab0 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 &&