summaryrefslogtreecommitdiffstats
path: root/makechrootpkg
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-11-28 00:54:58 +0100
committerAaron Griffin <aaronmgriffin@gmail.com>2007-11-28 01:14:42 +0100
commit84f29cd82462fe7b215c0761ede8bb680f24651a (patch)
treeb2ee35d121dcd0f28559f23a3e4634707c72220d /makechrootpkg
parente32a2bb70c584dec49f5fafc449184a2b6fa6560 (diff)
downloaddevtools-84f29cd82462fe7b215c0761ede8bb680f24651a.tar.gz
devtools-84f29cd82462fe7b215c0761ede8bb680f24651a.tar.xz
Clarify message when PKGBUILD does not exist and always have help available
makechrootpkg should check for a PKGBUILD and user credentials after the option to print usage is granted. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'makechrootpkg')
-rwxr-xr-xmakechrootpkg22
1 files changed, 11 insertions, 11 deletions
diff --git a/makechrootpkg b/makechrootpkg
index 1ebf705..2a6e1b0 100755
--- a/makechrootpkg
+++ b/makechrootpkg
@@ -16,17 +16,6 @@ chrootdir="$CHROOT_SHELL"
APPNAME=$(basename "${0}")
-if [ ! -f PKGBUILD ]; then
- echo "This must be run in the directory of a built package."
- exit 1
-fi
-source PKGBUILD
-
-if [ "$EUID" != "0" ]; then
- echo "This script must be run as root."
- exit 1
-fi
-
usage ()
{
echo "usage ${APPNAME} [-h] [-c CHROOT_SHELL] [--] [makepkg args]"
@@ -61,6 +50,17 @@ done
# Pass all arguments after -- right to makepkg
MAKEPKG_ARGS="$MAKEPKG_ARGS ${*:$OPTIND}"
+if [ "$EUID" != "0" ]; then
+ echo "This script must be run as root."
+ exit 1
+fi
+
+if [ ! -f PKGBUILD ]; then
+ echo "This must be run in a directory containing a PKGBUILD."
+ exit 1
+fi
+source PKGBUILD
+
if [ ! -d "$chrootdir" ]; then
echo "No \$CHROOT_SHELL defined, or invalid path"
exit 1