diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-01-08 06:24:13 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-01-08 06:24:13 +0000 |
commit | 0311189481e28fb4453efbbe64d57ef593b58be1 (patch) | |
tree | 87550c06af9f5b17c38d4bc79bf7bb7f4d6d71ca /nightly | |
parent | cc874b535136c2f20a345d17910a0dfc3efe8ebf (diff) |
trunk/nightly/bin/nightly
Use '.' instead of 'source', because that's how /bin/sh does it. This
should make the script more reliable on systems that don't have bash as
the /bin/sh, eg. Ubuntu and Debian.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8920 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'nightly')
-rwxr-xr-x | nightly/bin/nightly | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nightly/bin/nightly b/nightly/bin/nightly index cd4d9f16..94797d84 100755 --- a/nightly/bin/nightly +++ b/nightly/bin/nightly @@ -58,7 +58,7 @@ svn_new_date=`date --date=today +%Y-%m-%dT%H:%M:%S` cd $ABT_TOP # Setup any relevant environment variables from conf/<tag>.conf. -source conf/$ABT_MACHINE.conf +. conf/$ABT_MACHINE.conf if [ "${ABT_JOBS}" = "" ]; then ABT_JOBS=1 fi |