From 4b0a3215db110fccf1c218c0258e0d120eeeb0f3 Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Wed, 21 Nov 2018 12:43:41 +0000 Subject: [PATCH] scripts/build: fix invalid color --- scripts/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build b/scripts/build index c83781673d..0c40a98cac 100755 --- a/scripts/build +++ b/scripts/build @@ -264,7 +264,7 @@ if [ -z "$PKG_TOOLCHAIN" -o "$PKG_TOOLCHAIN" = "auto" ]; then _auto_toolchain=" (auto-detect)" fi if ! listcontains "meson cmake cmake-make configure ninja make autotools manual" "$PKG_TOOLCHAIN"; then - die "$(print_color bold-red "ERROR:") unknown toolchain $PKG_TOOLCHAIN" + die "$(print_color "CLR_ERROR" "ERROR:") unknown toolchain $PKG_TOOLCHAIN" fi build_msg "CLR_TOOLCHAIN" "TOOLCHAIN" "${PKG_TOOLCHAIN}${_auto_toolchain}"