removed stray (B in CI test output

This commit is contained in:
Martin Diz
2018-09-28 19:27:55 -03:00
parent 3eb5ecdf58
commit 25f3565340
2 changed files with 16 additions and 4 deletions
+8 -2
View File
@@ -100,8 +100,14 @@ else
log_directory=""
fi
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; }
if [ "$CIRCLECI" ]
then
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput setaf 7)"; }
function printError() { echo "$(tput setaf 1)$1$(tput setaf 7)"; }
else
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; }
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
fi
printTask "Running commandline tests..."
# Only run in parallel if this is run on CI infrastructure