aboutsummaryrefslogtreecommitdiff
path: root/t/t9301-fast-export.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-02-18 11:17:27 -0800
committerJunio C Hamano <gitster@pobox.com>2009-02-18 11:17:27 -0800
commit91e80b984e0afda37d288e550fb5832d2b71568c (patch)
treee1fc5942bd993cf558dd849654ce1429a22ca1ec /t/t9301-fast-export.sh
parentd61027b21f403a74ba16191756d22717a2e95bd4 (diff)
downloadgit-91e80b984e0afda37d288e550fb5832d2b71568c.tar.gz
git-91e80b984e0afda37d288e550fb5832d2b71568c.tar.xz
tests: fix "export var=val"
Some shells do not like "export var=val"; the right way to write it is to do an assignment and then export just the variable name. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9301-fast-export.sh')
-rwxr-xr-xt/t9301-fast-export.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9301-fast-export.sh b/t/t9301-fast-export.sh
index 998572105..86c376088 100755
--- a/t/t9301-fast-export.sh
+++ b/t/t9301-fast-export.sh
@@ -185,8 +185,8 @@ test_expect_success 'submodule fast-export | fast-import' '
'
-export GIT_AUTHOR_NAME='A U Thor'
-export GIT_COMMITTER_NAME='C O Mitter'
+GIT_AUTHOR_NAME='A U Thor'; export GIT_AUTHOR_NAME
+GIT_COMMITTER_NAME='C O Mitter'; export GIT_COMMITTER_NAME
test_expect_success 'setup copies' '