aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2019-02-13 21:43:08 +0100
committerUlrich Müller <ulm@gentoo.org>2019-02-13 21:43:08 +0100
commit50fd0e9ae91c7d953278eaba90716e7f5fa4ebb4 (patch)
tree943a2ac2a0bf04da6f62680274df6888340530e5 /libs
parentWarn about deprecated profiles. (diff)
downloadeselect-50fd0e9ae91c7d953278eaba90716e7f5fa4ebb4.tar.gz
eselect-50fd0e9ae91c7d953278eaba90716e7f5fa4ebb4.tar.bz2
eselect-50fd0e9ae91c7d953278eaba90716e7f5fa4ebb4.zip
Output warning messages in yellow.
* libs/output.bash.in (colours): Display warning messages in yellow, in order to distinguish from errors which are red. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'libs')
-rw-r--r--libs/output.bash.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/output.bash.in b/libs/output.bash.in
index 2d32bc6..2f6fc02 100644
--- a/libs/output.bash.in
+++ b/libs/output.bash.in
@@ -20,8 +20,8 @@ colours() {
COLOUR_NORMAL=$(tput sgr0)
COLOUR_BOLD=$(tput bold)
COLOUR_HI=$(tput setaf 4)${COLOUR_BOLD} # blue
- COLOUR_WARN=$(tput setaf 1)${COLOUR_BOLD} # red
- COLOUR_ERROR=${COLOUR_WARN}
+ COLOUR_WARN=$(tput setaf 3)${COLOUR_BOLD} # yellow
+ COLOUR_ERROR=$(tput setaf 1)${COLOUR_BOLD} # red
COLOUR_LIST_HEADER=$(tput setaf 2)${COLOUR_BOLD} # green
COLOUR_LIST_LEFT=${COLOUR_BOLD}
COLOUR_LIST_RIGHT=${COLOUR_NORMAL}