Merge pull request #5115 from mestorlx/cleancircleci

removed stray (B in CI test output
This commit is contained in:
chriseth
2018-10-01 13:18:55 +02:00
committed by GitHub
2 changed files with 16 additions and 4 deletions
+8 -2
View File
@@ -37,9 +37,15 @@ FULLARGS="--optimize --ignore-missing --combined-json abi,asm,ast,bin,bin-runtim
echo "Checking that the bug list is up to date..."
"$REPO_ROOT"/scripts/update_bugs_by_version.py
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
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
function compileFull()
{