From 393fa18b3be7e85d746585e5fd94f476a95b54a3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 28 Jul 2015 11:34:46 +0100 Subject: [PATCH] bamboo: fix comparison operator in CLANG-env --- bamboo/CLANG-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bamboo/CLANG-env.sh b/bamboo/CLANG-env.sh index 4260d407a..a89b187ab 100644 --- a/bamboo/CLANG-env.sh +++ b/bamboo/CLANG-env.sh @@ -1,5 +1,5 @@ # No module environment on the Mac -[[ $(uname) -eq "Darwin" ]] && return +[[ $(uname) == "Darwin" ]] && return # Initialise module environment if it is not if [[ ! $(command -v module > /dev/null 2>&1) ]]; then . /usr/local/apps/module/init/bash