Merge "Fix typo in Browbeat.py and libs conditional for CI"

This commit is contained in:
Jenkins 2016-08-25 13:04:58 +00:00 committed by Gerrit Code Review
commit 9bae6716d1

View File

@ -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