Skip to content

Commit

Permalink
perf(Travis): make bash message bold
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Oct 26, 2020
1 parent d09c89b commit 73b7d97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ function now() {
}

function printInfo() {
echo -e "$(now) \e[32m INFO --- $1\e[0m"
echo -e "$(now) \e[32m\e[1mINFO\e[0m\e[32m --- $1\e[0m"
return 0
}

function printWarn() {
echo -e "$(now) \e[33m WARN --- $1\e[0m"
echo -e "$(now) \e[32m\e[1mWARN\e[0m\e[32m --- $1\e[0m"
return 0
}

function printError() {
echo -e "$(now) \e[31mERROR --- $1\e[0m"
echo -e "$(now) \e[32m\e[1mERROR\e[0m\e[32m --- $1\e[0m"
return 0
}

0 comments on commit 73b7d97

Please sign in to comment.