diff options
author | Torsten Bögershausen <tboegi@web.de> | 2013-04-26 11:18:16 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-26 09:52:11 -0700 |
commit | 56291c141e5c95f1210c72b080674ba36bcf054e (patch) | |
tree | a8e845adf3e77b203f652bf6d0d8e45e489841d3 /t/t9020-remote-svn.sh | |
parent | 173f9a7145ab71d8ea916840836246afc6db66ef (diff) | |
download | git-56291c141e5c95f1210c72b080674ba36bcf054e.tar.gz git-56291c141e5c95f1210c72b080674ba36bcf054e.tar.xz |
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/t9020-remote-svn.sh')
-rwxr-xr-x | t/t9020-remote-svn.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t9020-remote-svn.sh b/t/t9020-remote-svn.sh index 2d2f016f6..d9f6b73ab 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 && |