Skip to content

Commit

Permalink
Unset CONFIG_FILE env var if in standalone environment
Browse files Browse the repository at this point in the history
There was a bug where we were setting it to nothing rather than
unsetting it, we think it might be causing other issues.

Change-Id: I06df6e9ed9f84414a5ee8765b255574952b281e9
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71530
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
crgeddes authored and dcrowell77 committed Feb 7, 2019
1 parent cf7c244 commit 1db4747
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/build/citest/setup-env
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ echo "MACHINE IS $MACHINE"
if [ "$CHIP" == "NIMBUS" ];
then
export PNOR=nimbus.pnor
export CONFIG_FILE=
unset CONFIG_FILE
elif [ "$CHIP" == "CUMULUS" ];
then
export PNOR=cumulus.pnor
export CONFIG_FILE=
unset CONFIG_FILE
elif [ "$CHIP" == "CUMULUS_CDIMM" ];
then
export PNOR=cumulus_cdimm.pnor
export CONFIG_FILE=
unset CONFIG_FILE
elif [ "$CHIP" == "FSPBUILD" ];
then
export PNOR=ZZ.pnor
Expand Down

0 comments on commit 1db4747

Please sign in to comment.