]> git.ipfire.org Git - thirdparty/git.git/commit
Don't use the 'export NAME=value' in the test scripts.
authorBryan Donlan <bdonlan@fushizen.net>
Sun, 4 May 2008 05:37:58 +0000 (01:37 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 May 2008 21:17:01 +0000 (14:17 -0700)
commit0e46e704626af5189c9c9ff2c0f348d2205c10f3
tree5c1ad84d9adf5016bd1b8324da1c148025cd74df
parentcdf3ec01acb8785b8e61ce6e006c9c4c763de663
Don't use the 'export NAME=value' in the test scripts.

This form is not portable across all shells, so replace instances of:

  export FOO=bar

with:

  FOO=bar
  export FOO

Signed-off-by: Bryan Donlan <bdonlan@fushizen.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-httpd.sh
t/t1500-rev-parse.sh
t/t1501-worktree.sh
t/t3400-rebase.sh
t/t3500-cherry.sh
t/t5500-fetch-pack.sh
t/t6000lib.sh
t/t6010-merge-base.sh
t/t7004-tag.sh
t/t9500-gitweb-standalone-no-errors.sh