summaryrefslogtreecommitdiffstats
path: root/contrib/updpkgsums.sh.in
diff options
context:
space:
mode:
authorJason St. John <jstjohn@purdue.edu>2013-11-08 08:53:33 +0100
committerAllan McRae <allan@archlinux.org>2013-11-15 02:02:27 +0100
commita15fd48016014249a13db7a437b5e4f5937f6158 (patch)
treeeecd9c3717fcb05d58983ce89f4d3778502f0cc4 /contrib/updpkgsums.sh.in
parent7bfaa358ea45c5d527a382bb5fef734b3134bd6f (diff)
downloadpacman-a15fd48016014249a13db7a437b5e4f5937f6158.tar.gz
pacman-a15fd48016014249a13db7a437b5e4f5937f6158.tar.xz
Improve --help switch output for pacman contrib and pacman scripts
Unify the formatting of the --help switch for pacman utils, if it exists. All of the pacman utils will now output help text using the following format: util-name (pacman) v<pacman version> one line description of util's purpose Usage: util-name [options] -b, --bar whatever --bar does -f, --foo whatever --foo does -h, --help display this help message Reported-by: Karol Błażewicz <karol.blazewicz at gmail.com> Signed-off-by: Jason St. John <jstjohn@purdue.edu>
Diffstat (limited to 'contrib/updpkgsums.sh.in')
-rw-r--r--contrib/updpkgsums.sh.in18
1 files changed, 11 insertions, 7 deletions
diff --git a/contrib/updpkgsums.sh.in b/contrib/updpkgsums.sh.in
index 4d35357f..0f52db4c 100644
--- a/contrib/updpkgsums.sh.in
+++ b/contrib/updpkgsums.sh.in
@@ -23,12 +23,16 @@ declare -r myname='updpkgsums'
declare -r myver='@PACKAGE_VERSION@'
usage() {
- printf 'usage: %s [buildfile]\n\n' "$myname"
- printf ' -h, --help display this help message and exit\n'
- printf ' -V, --version display version information and exit\n\n'
- printf '%s will perform an in place update the checksums in the\n' "$myname"
- printf 'path specified by [buildfile], defaulting to PKGBUILD in the current\n'
- printf 'working directory.\n'
+ printf "%s (pacman) v%s\n" "${myname}" "${myver}"
+ echo
+ printf "%s will perform an in place update of the checksums in the\n" "${myname}"
+ echo "path specified by [build file], defaulting to PKGBUILD in the current"
+ echo "working directory."
+ echo
+ printf "Usage: %s [build file]\n" "${myname}"
+ echo
+ echo " -h, --help display this help message and exit"
+ echo " -V, --version display version information and exit"
}
version() {
@@ -43,7 +47,7 @@ esac
buildfile=${1:-PKGBUILD}
if [[ ! -f $buildfile ]]; then
- printf '==> ERROR: %s not found or is not a file\n' "$buildfile"
+ printf "==> ERROR: %s not found or is not a file\n" "$buildfile"
exit 1
fi