From: Pete Wyckoff Date: Sun, 9 Sep 2012 20:16:02 +0000 (-0400) Subject: git p4 test: remove bash-ism of combined export/assignment X-Git-Tag: v1.8.0-rc0~36^2~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8c2913508644bb3ef511c7edac1b15cfafe61df5;p=git.git git p4 test: remove bash-ism of combined export/assignment Signed-off-by: Pete Wyckoff Acked-by: Luke Diamand Signed-off-by: Junio C Hamano --- diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh index 2d753ab7e..482eeac4d 100644 --- a/t/lib-git-p4.sh +++ b/t/lib-git-p4.sh @@ -26,9 +26,10 @@ testid=${this_test#t} git_p4_test_start=9800 P4DPORT=$((10669 + ($testid - $git_p4_test_start))) -export P4PORT=localhost:$P4DPORT -export P4CLIENT=client -export P4EDITOR=: +P4PORT=localhost:$P4DPORT +P4CLIENT=client +P4EDITOR=: +export P4PORT P4CLIENT P4EDITOR db="$TRASH_DIRECTORY/db" cli=$(test-path-utils real_path "$TRASH_DIRECTORY/cli")