diff --git a/Makefile b/Makefile index bde05a75c..3b2c6d075 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,9 @@ MAKEFLAGS += --warn-undefined-variables MAKEFLAGS += --no-builtin-rules OS := $(shell uname) -ERROR_COLOR := "\033[41m" -YELLOW_COLOR = "\033[0;33m" -NO_COLOR = "\033[0m" +ERROR_COLOR := $(shell tput setab 1) +YELLOW_COLOR := $(shell tput setaf 3) +NO_COLOR := $(shell tput sgr0) COMPOSER_BIN_PLUGIN_VENDOR = vendor/bamarni/composer-bin-plugin diff --git a/requirement-checker/Makefile b/requirement-checker/Makefile index 85e13176c..e624bd1a8 100644 --- a/requirement-checker/Makefile +++ b/requirement-checker/Makefile @@ -3,9 +3,9 @@ MAKEFLAGS += --warn-undefined-variables MAKEFLAGS += --no-builtin-rules OS := $(shell uname) -ERROR_COLOR := "\033[41m" -YELLOW_COLOR := "\033[0;33m" -NO_COLOR := "\033[0m" +ERROR_COLOR := $(shell tput setab 1) +YELLOW_COLOR := $(shell tput setaf 3) +NO_COLOR := $(shell tput sgr0) PHPUNIT_BIN = vendor/bin/phpunit