scripts: Add color to pacman-db-upgrade

Color enabled by default, use --nocolor to turn off colors.

Signed-off-by: William Giokas <1007380@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
William Giokas 2013-03-04 02:19:33 -06:00 committed by Allan McRae
parent 65650f2cdb
commit 2c91b991ee
1 changed files with 10 additions and 1 deletions

View File

@ -28,11 +28,13 @@ declare -r myver='@PACKAGE_VERSION@'
eval $(awk '/DBPath/ {print $1$2$3}' @sysconfdir@/pacman.conf)
dbroot="${DBPath:-@localstatedir@/lib/pacman/}"
USE_COLOR='y'
m4_include(library/output_format.sh)
usage() {
printf "pacman-db-upgrade (pacman) %s\n\n" "$myver"
printf -- "$(gettext "Usage: %s [pacman_db_root]")\n\n" "$0"
printf -- "$(gettext "Usage: %s [--nocolor] [pacman_db_root]")\n\n" "$0"
}
version() {
@ -72,6 +74,13 @@ if [[ $1 = "-V" || $1 = "--version" ]]; then
exit 0
fi
if [[ $1 = "--nocolor" ]]; then
USE_COLOR='n'
shift
fi
m4_include(library/term_colors.sh)
if [[ -n $1 ]]; then
dbroot="$1"
fi