mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-09 04:46:19 +10:00
14 lines
177 B
Plaintext
14 lines
177 B
Plaintext
display_fatal() {
|
|
which tput &> /dev/null
|
|
if [[ "$?" == "0" ]]; then
|
|
tput sgr0
|
|
tput setaf 1
|
|
echo "ERROR: $1" >&2
|
|
tput sgr0
|
|
else
|
|
echo "ERROR: $1" >&2
|
|
fi
|
|
exit 1
|
|
}
|
|
|