From e608aebe120f436471c92a21ee91f5f45e5a9b3a Mon Sep 17 00:00:00 2001 From: fabs Date: Fri, 11 Jun 2021 20:07:43 +0200 Subject: [PATCH] Fix more colors --- music_tagmove_lib | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/music_tagmove_lib b/music_tagmove_lib index cfa56d0..b5c6f29 100644 --- a/music_tagmove_lib +++ b/music_tagmove_lib @@ -33,13 +33,13 @@ function print_error_stack { } function info { - printf "%s %s\n" $(colthis cyan "[info]") "$*" + printf "%s %s\n" $(cyan echo "[info]") "$*" } function error { global_errf=1 local_errf=1 - current_error_line=$(printf "%s %s" $(colthis red "[error]") "$*") + current_error_line=$(printf "%s %s" $(red echo "[error]") "$*") global_error_stack+=( "$current_error_line" ) >&2 printf "%s\n" "$current_error_line" }