Honour NO_COLOR in bootstrap scrips, fixes #248

This commit is contained in:
Julian Ospald 2021-09-24 20:37:55 +02:00
parent ff2b06a5e8
commit d662682fb5
Signed by: hasufell
GPG Key ID: 3786C5262ECB4A3F
1 changed files with 41 additions and 25 deletions

View File

@ -52,11 +52,18 @@ esac
die() {
if [ -n "${NO_COLOR}" ] ; then
(>&2 printf "%s\\n" "$1")
else
(>&2 printf "\\033[0;31m%s\\033[0m\\n" "$1")
fi
exit 2
}
warn() {
if [ -n "${NO_COLOR}" ] ; then
printf "%s\\n" "$1"
else
case "${plat}" in
MSYS*|MINGW*)
echo -e "\\033[0;35m$1\\033[0m"
@ -65,9 +72,13 @@ warn() {
printf "\\033[0;35m%s\\033[0m\\n" "$1"
;;
esac
fi
}
yellow() {
if [ -n "${NO_COLOR}" ] ; then
printf "%s\\n" "$1"
else
case "${plat}" in
MSYS*|MINGW*)
echo -e "\\033[0;33m$1\\033[0m"
@ -76,9 +87,13 @@ yellow() {
printf "\\033[0;33m%s\\033[0m\\n" "$1"
;;
esac
fi
}
green() {
if [ -n "${NO_COLOR}" ] ; then
printf "%s\\n" "$1"
else
case "${plat}" in
MSYS*|MINGW*)
echo -e "\\033[0;32m$1\\033[0m"
@ -87,6 +102,7 @@ green() {
printf "\\033[0;32m%s\\033[0m\\n" "$1"
;;
esac
fi
}
edo() {