mirror of https://github.com/k3s-io/k3s
Rename `RAW_OUTPUT` -> `NO_COLOR`
Also, if NO_COLOR is empty, output will be colored, otherwise not colored. Signed-off-by: Rishikesh Nair <alienware505@gmail.com>pull/9660/head
parent
ff7cfa2235
commit
ce0765c9f8
|
@ -21,9 +21,6 @@ binDir=$(dirname "$0")
|
||||||
configFormat=gz
|
configFormat=gz
|
||||||
isError=0
|
isError=0
|
||||||
|
|
||||||
# RAW_OUTPUT=1 disables colored outputs
|
|
||||||
RAW_OUTPUT=${RAW_OUTPUT:-0}
|
|
||||||
|
|
||||||
if [ $# -gt 0 ]; then
|
if [ $# -gt 0 ]; then
|
||||||
CONFIG="$1"
|
CONFIG="$1"
|
||||||
fi
|
fi
|
||||||
|
@ -58,6 +55,10 @@ is_set_as_module() {
|
||||||
}
|
}
|
||||||
|
|
||||||
color() {
|
color() {
|
||||||
|
if [[ -n "$NO_COLOR" ]]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
codes=
|
codes=
|
||||||
if [ "$1" = 'bold' ]; then
|
if [ "$1" = 'bold' ]; then
|
||||||
codes=1
|
codes=1
|
||||||
|
@ -84,11 +85,6 @@ color() {
|
||||||
printf '\033['"$codes"'m'
|
printf '\033['"$codes"'m'
|
||||||
}
|
}
|
||||||
wrap_color() {
|
wrap_color() {
|
||||||
if [ $RAW_OUTPUT -eq 1 ]; then
|
|
||||||
echo -n "$1"
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
text="$1"
|
text="$1"
|
||||||
shift
|
shift
|
||||||
color "$@"
|
color "$@"
|
||||||
|
|
Loading…
Reference in New Issue