t9020: do not use export X=Y
authorTorsten Bögershausen <tboegi@web.de>
Fri, 26 Apr 2013 09:18:16 +0000 (11:18 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 26 Apr 2013 16:52:11 +0000 (09:52 -0700)
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>
t/t9020-remote-svn.sh
index 2d2f016f6f8b151f10b08e4419dc6d3bdef3d0a8..d9f6b73ab001c4105cf336e213978807d8acf864 100755 (executable)
@@ -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  &&