diff options
author | merakor <cem@ckyln.com> | 2020-05-07 17:30:34 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-05-07 17:30:34 +0000 |
commit | 7187dbe22405430c224e3848686cba170e182d93 (patch) | |
tree | 7c2239d1de9e93ff84c21d7e4b254d1e6919e72f /kiss | |
parent | 92c57e7dff0b855ec6e96558d8421f50396cc35f (diff) | |
download | cpt-7187dbe22405430c224e3848686cba170e182d93.tar.gz |
kiss: change colour escape behaviour to be enabled and disabled.
This adds the ability for globally enabling or disabling colour
escapes.
FossilOrigin-Name: 5640b4c4e6f28bcfe62dd0f476471042a24a633f44d57ccf5851cfa0e7761252
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1426,9 +1426,6 @@ args() { log "Retrieving post-installation message queue" unset msg - [ "$KISS_COLOUR" ] || [ -t 1 ] && - colour=1 - for pkg in $order; do if [ -f "$sys_db/$pkg/message" ]; then printf '%s\n%b%s%b\n%s\n\n' \ @@ -1444,8 +1441,6 @@ args() { e|extension) log "Installed extensions" - [ "$KISS_COLOUR" ] || - [ -t 1 ] && colour=1 set -- @@ -1577,10 +1572,15 @@ main() { "${bin_dir:=$cac_dir/bin}" # Disable colour escape sequences if running in a subshell. - # This behaviour can be disabled by adding a KISS_COLOUR - # variable to the environment. - [ "$KISS_COLOUR" ] || [ -t 1 ] || + # This behaviour can be changed by adding a KISS_COLOUR + # variable to the environment. If it is set to 1 it will + # always enable colour escapes, and if set to 0 it will + # always disable colour escapes. + if [ "$KISS_COLOUR" = 1 ]; then colour=1 + elif [ "$KISS_COLOUR" = 0 ] || [ -t 0 ]; then log() { printf '%s %s %s\n' "${3:-->}" "$1" "$2" >&2 ;} + else colour=1 + fi args "$@" } |