From e7b890c08481e508fa9a086f638f246458653b2f Mon Sep 17 00:00:00 2001 From: Andre Richter Date: Sat, 13 Mar 2021 00:18:18 +0100 Subject: [PATCH] test fix for CI tput errors --- utils/color.mk.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/color.mk.in b/utils/color.mk.in index 1945a10c..851bac87 100644 --- a/utils/color.mk.in +++ b/utils/color.mk.in @@ -1,5 +1,5 @@ define colorecho - @tput setaf 6 + @tput setaf 6 2> /dev/null || true @echo $1 - @tput sgr0 + @tput sgr0 2> /dev/null || true endef