Skip to content

Commit

Permalink
Re #8882. Fix error - should be == not !=.
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellTaylor committed Apr 9, 2014
1 parent 781e704 commit 5f16d71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Code/Mantid/Build/Jenkins/buildscript
Expand Up @@ -89,7 +89,8 @@ if [[ $(uname) != 'Darwin' ]]; then
fi

if [[ "$CLEANBUILD" == true ]]; then
if [[ $(uname) != 'Darwin' ]]; then
# On the Mac, only create a package for clean builds
if [[ $(uname) == 'Darwin' ]]; then
$SCL_ON_RHEL6 "cpack"
fi

Expand Down

0 comments on commit 5f16d71

Please sign in to comment.