diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-03-27 21:23:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-03-27 21:23:00 +0000 |
commit | 8c2e5bea21641d6d2b219ffefc4ed721526ba876 (patch) | |
tree | 19b02034edcc92fe820230ec283024b063ff98b7 /build-docbook-catalog | |
parent | eat trailing whitespace (diff) | |
download | build-docbook-catalog-8c2e5bea21641d6d2b219ffefc4ed721526ba876.tar.gz build-docbook-catalog-8c2e5bea21641d6d2b219ffefc4ed721526ba876.tar.bz2 build-docbook-catalog-8c2e5bea21641d6d2b219ffefc4ed721526ba876.zip |
add an error() helper
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'build-docbook-catalog')
-rwxr-xr-x | build-docbook-catalog | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/build-docbook-catalog b/build-docbook-catalog index 56b848a..c80796b 100755 --- a/build-docbook-catalog +++ b/build-docbook-catalog @@ -1,10 +1,10 @@ #!/bin/bash -# $Header: /usr/local/src/gentoo/gentoo-src/cvsroot/gentoo-src/build-docbook-catalog/build-docbook-catalog,v 1.7 2011/11/01 21:04:00 vapier Exp $ +# $Header: /usr/local/src/gentoo/gentoo-src/cvsroot/gentoo-src/build-docbook-catalog/build-docbook-catalog,v 1.8 2012/03/27 21:23:00 vapier Exp $ # # build-docbook-catalog: populate /etc/xml/docbook based in # installed docbook-xml-dtd versions. # -# Copyright 2004 Gentoo Foundation +# Copyright 2004-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # written by Aron Griffis # @@ -30,7 +30,7 @@ main() { case "$1" in -v|--verbose) VERBOSE=true ; shift ;; --) shift ; break ;; - *) echo "Options parsing failed on $1!" >&2 ; exit 1 ;; + *) error "options parsing failed on $1!" ;; esac done @@ -65,6 +65,14 @@ verb() { } # +# show an error and abort +# +error() { + printf '%s: %b, aborting\n' "${ZERO}" "$*" 1>&2 + exit 1 +} + +# # fill in the DTDS variable based on installed versions # set_dtds() { @@ -86,8 +94,7 @@ create_catalogs() { echo "Creating XML Catalog root ${ROOTCATALOG}" /usr/bin/xmlcatalog --noout --create ${ROOTCATALOG} if [[ ! -r ${ROOTCATALOG} ]] ; then - echo "Failed creating ${ROOTCATALOG}, aborting" >&2 - exit 1 + error "failed creating ${ROOTCATALOG}" fi else verb "Found XML Catalog root ${ROOTCATALOG}" @@ -100,8 +107,7 @@ create_catalogs() { echo "Creating DocBook XML Catalog ${CATALOG}" /usr/bin/xmlcatalog --noout --create ${CATALOG} if [[ ! -r ${CATALOG} ]] ; then - echo "Failed creating ${CATALOG}, aborting" >&2 - exit 1 + error "failed creating ${CATALOG}" fi else verb "Found DocBook XML Catalog ${CATALOG}" @@ -266,8 +272,7 @@ populate_entities() { let j=j+1 let i=i+2 else - echo "${0}: Whoah, shouldn't be here, aborting" >&2 - exit 1 + error "${0}: whoah, shouldn't be here" fi done } |