|
From: <sv...@va...> - 2009-01-08 06:24:19
|
Author: njn
Date: 2009-01-08 06:24:13 +0000 (Thu, 08 Jan 2009)
New Revision: 8920
Log:
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.
Modified:
trunk/nightly/bin/nightly
Modified: trunk/nightly/bin/nightly
===================================================================
--- trunk/nightly/bin/nightly 2009-01-08 06:07:05 UTC (rev 8919)
+++ trunk/nightly/bin/nightly 2009-01-08 06:24:13 UTC (rev 8920)
@@ -58,7 +58,7 @@
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
|