Updated report to use unicode X. Matches rest of pattern.

This commit is contained in:
James Patrick 2019-05-02 00:48:47 -04:00
parent 08b31bf97d
commit 3fcd8d81e5

View File

@ -6,7 +6,7 @@ NC='\033[0m' # No Color
format(){ format(){
case $1 in case $1 in
"error") echo -e "$R x $2$NC";; "error") echo -e "$R $2$NC";;
"warn") echo -e "$Y ⚠ $2$NC";; "warn") echo -e "$Y ⚠ $2$NC";;
"info") echo -e "$G ✔ $2$NC";; "info") echo -e "$G ✔ $2$NC";;
*) echo -e "$1: $2";; *) echo -e "$1: $2";;