summaryrefslogtreecommitdiffstats
path: root/env.bash
diff options
context:
space:
mode:
authorZane Shelley <zshelle@us.ibm.com>2017-06-21 14:07:32 -0500
committerZane C. Shelley <zshelle@us.ibm.com>2017-06-22 15:05:11 -0400
commit8f1c6259e6d88a9490755e7e8385f953f6559a0b (patch)
tree5c6e777dbff9d040164598c26e61cdd6e6e320fc /env.bash
parentea0477d5f909f217d4e09567e5481593f576878b (diff)
downloadtalos-hostboot-8f1c6259e6d88a9490755e7e8385f953f6559a0b.tar.gz
talos-hostboot-8f1c6259e6d88a9490755e7e8385f953f6559a0b.zip
Fixed bug in env.bash
sh uses '.' to source a file. For some reason 'source' is allowed, but not on all systems and therefore is not portable. Change-Id: I21efb436772cfaa9d9df61e859b88685b57ddcd3 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42235 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Caleb N. Palmer <cnpalmer@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: Benjamin J. Weisenbeck <bweisenb@us.ibm.com> Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
Diffstat (limited to 'env.bash')
-rwxr-xr-xenv.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/env.bash b/env.bash
index 1373cda65..a48e567da 100755
--- a/env.bash
+++ b/env.bash
@@ -5,7 +5,7 @@
#
# OpenPOWER HostBoot Project
#
-# Contributors Listed Below - COPYRIGHT 2010,2016
+# Contributors Listed Below - COPYRIGHT 2010,2017
# [+] International Business Machines Corp.
#
#
@@ -25,7 +25,7 @@
ROOTDIR=.
if [ -e ./customrc ]; then
- source ./customrc
+ . ./customrc
fi
if [ -n "${OPENPOWER_BUILD}" ]; then
OpenPOWER on IntegriCloud