Commit 890baf68 authored by Eric Bélanger's avatar Eric Bélanger Committed by Pierre Schmitz
Browse files

Make sure the usage functions are consistent



The usage messages now begins with a "Usage:", i.e. capitalized and with a colon. Fixes FS#26956.

Signed-off-by: default avatarEric Bélanger <snowmaniscool@gmail.com>
Signed-off-by: default avatarPierre Schmitz <pierre@archlinux.de>
parent 2020fb40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ chroots='/var/lib/archbuild'
clean_first=false

usage() {
	echo "usage $cmd"
	echo "Usage: $cmd"
	echo '    -c         Recreate the chroot before building'
	echo '    -r <dir>   Create chroots in this directory'
	exit 1
+2 −2
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ pkgbase=${pkgbase:-$pkgname}
case "$cmd" in
	commitpkg)
		if (( $# == 0 )); then
			die 'usage: commitpkg <reponame> [-f] [-s server] [-l limit] [-a arch] [commit message]'
			die 'Usage: commitpkg <reponame> [-f] [-s server] [-l limit] [-a arch] [commit message]'
		fi
		repo="$1"
		shift
@@ -51,7 +51,7 @@ case "$cmd" in
		repo="${cmd%pkg}"
		;;
	*)
		die 'usage: commitpkg <reponame> [-f] [-s server] [-l limit] [-a arch] [commit message]'
		die 'Usage: commitpkg <reponame> [-f] [-s server] [-l limit] [-a arch] [commit message]'
		;;
esac

+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ m4_include(lib/common.sh)
match=$1

if [[ -z $match ]]; then
	echo 'usage: finddeps <depname>'
	echo 'Usage: finddeps <depname>'
	echo ''
	echo 'Find packages that depend on a given depname.'
	echo 'Run this script from the top-level directory of your ABS tree.'
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ default_copy=$USER
src_owner=${SUDO_USER:-$USER}

usage() {
	echo "usage ${0##*/} [options] -r <chrootdir> [--] [makepkg args]"
	echo "Usage: ${0##*/} [options] -r <chrootdir> [--] [makepkg args]"
	echo ' Run this script in a PKGBUILD dir to build a package inside a'
	echo ' clean chroot. All unrecognized arguments passed to this script'
	echo ' will be passed to makepkg.'
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ APPNAME=$(basename "${0}")

# usage: usage <exitvalue>
usage() {
	echo "usage ${APPNAME} [options] working-dir [package-list | app]"
	echo "Usage: ${APPNAME} [options] working-dir [package-list | app]"
	echo ' options:'
	echo '    -r <app>      Run "app" within the context of the chroot'
	echo '    -u            Update the chroot via pacman'
Loading