Unverified Commit e66c2926 authored by frob's avatar frob Committed by GitHub
Browse files

Better error suppresion when getting terminal colours (#7739)


Co-authored-by: default avatarRichard Lyons <frob@cloudstaff.com>
parent 712d63c3
......@@ -4,8 +4,8 @@
set -eu
red="$( (/usr/bin/tput bold; /usr/bin/tput setaf 1; :) 2>&-)"
plain="$( (/usr/bin/tput sgr0; :) 2>&-)"
red="$( (/usr/bin/tput bold || :; /usr/bin/tput setaf 1 || :) 2>&-)"
plain="$( (/usr/bin/tput sgr0 || :) 2>&-)"
status() { echo ">>> $*" >&2; }
error() { echo "${red}ERROR:${plain} $*"; exit 1; }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment