diff options
author | Martin Diz <gitlab@martindiz.com.ar> | 2018-09-29 05:31:23 +0800 |
---|---|---|
committer | Martin Diz <gitlab@martindiz.com.ar> | 2018-09-29 06:27:55 +0800 |
commit | 25f35653407caac0da084e52f998c76b062f260c (patch) | |
tree | d9bc4f2e1bbf495482cf28bbe2ec8e542301457b /test/cmdlineTests.sh | |
parent | 3eb5ecdf585426cb6390bffa881b448f50a655f9 (diff) | |
download | dexon-solidity-25f35653407caac0da084e52f998c76b062f260c.tar.gz dexon-solidity-25f35653407caac0da084e52f998c76b062f260c.tar.zst dexon-solidity-25f35653407caac0da084e52f998c76b062f260c.zip |
removed stray (B in CI test output
Diffstat (limited to 'test/cmdlineTests.sh')
-rwxr-xr-x | test/cmdlineTests.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/cmdlineTests.sh b/test/cmdlineTests.sh index f7577cb3..6e57ce0f 100755 --- a/test/cmdlineTests.sh +++ b/test/cmdlineTests.sh @@ -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() { |