From 79058b15bfd320c23fc8f0b701f8c5c81db75004 Mon Sep 17 00:00:00 2001 From: jkilpatr Date: Wed, 24 Aug 2016 07:31:23 -0400 Subject: [PATCH] Fix typo in Browbeat.py and libs conditional for CI BASH is whitespace sensitive, so one part of the conditional for checking changes to Browbeat.py and the libs folder would always fail. Change-Id: I090bcc87e5112a0d0c40796ed9f4ea470d7607fa --- ci-scripts/tripleo/install-and-check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-scripts/tripleo/install-and-check.sh b/ci-scripts/tripleo/install-and-check.sh index 24c1de0b9..4e56be298 100755 --- a/ci-scripts/tripleo/install-and-check.sh +++ b/ci-scripts/tripleo/install-and-check.sh @@ -150,14 +150,14 @@ for tool in rally; do done #Tests files in lib/ -if [[ $($DIFF_CMD | grep -i lib\/) != "" ]] && [$HASRUN == "false"] +if [[ $($DIFF_CMD | grep -i lib\/) != "" ]] && [ $HASRUN == false ] then time runBrowbeat rally HASRUN=true fi #Test Browbeat.py -if [[ $($DIFF_CMD | grep -i browbeat.py) != "" ]] && [$HASRUN == "false"] +if [[ $($DIFF_CMD | grep -i browbeat.py) != "" ]] && [ $HASRUN == false ] then time runBrowbeat rally HASRUN=true