Skip to content

Commit

Permalink
Re #8882. OS X bash doesn't like the uppercase conversion.
Browse files Browse the repository at this point in the history
So we'll just manage without being case insensitive. There are other ways
to do it, but it's not worth the trouble.
  • Loading branch information
RussellTaylor committed Feb 6, 2014
1 parent 2815043 commit 1cf985e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Build/Jenkins/buildscript
Expand Up @@ -24,9 +24,9 @@ if [[ $(uname) == 'Darwin' ]]; then
fi

###############################################################################
# RHEL6 setup steps
# RHEL6 setup steps - nodes must have a "rhel6" label set (in lowercase)
###############################################################################
if [[ ${NODE_LABELS^^} == *RHEL6* ]]; then
if [[ ${NODE_LABELS} == *rhel6* ]]; then
SCL_ON_RHEL6="scl enable mantidlibs"
else
SCL_ON_RHEL6="eval"
Expand Down

0 comments on commit 1cf985e

Please sign in to comment.