diff options
author | Allan McRae <allan@archlinux.org> | 2011-06-09 20:43:25 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-15 09:18:05 -0500 |
commit | 4272b37d3d9f112b9f089dafc2e7538c4c24f7b2 (patch) | |
tree | 54fd5b534896f19da2b212848f0f5454317bb58a /scripts/repo-add.sh.in | |
parent | 6f3a2145b0de7f27a1bf5932af3fe0a67171a881 (diff) | |
download | pacman-4272b37d3d9f112b9f089dafc2e7538c4c24f7b2.tar.xz |
scripts: refactor output formatting functions
Move the common output formatting functions into a separate
library file and import that into each script. makepkg is
excluded due to its additional color formatting.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/repo-add.sh.in')
-rw-r--r-- | scripts/repo-add.sh.in | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in index 0ffc0df5..6ccefd7b 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -38,27 +38,7 @@ CLEAN_LOCK=0 # ensure we have a sane umask set umask 0022 -msg() { - (( QUIET )) && return - local mesg=$1; shift - printf "==> ${mesg}\n" "$@" >&1 -} - -msg2() { - (( QUIET )) && return - local mesg=$1; shift - printf " -> ${mesg}\n" "$@" >&1 -} - -warning() { - local mesg=$1; shift - printf "==> $(gettext "WARNING:") ${mesg}\n" "$@" >&2 -} - -error() { - local mesg=$1; shift - printf "==> $(gettext "ERROR:") ${mesg}\n" "$@" >&2 -} +m4_include(library/output_format.sh) # print usage instructions usage() { |