From 9127f25aff12902bf58302982c104704a5bdf202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Thu, 2 Jun 2011 13:08:36 -0300 Subject: Better root user check --- libremakepkg | 2 +- librestage | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libremakepkg b/libremakepkg index 8af1581..e46a20a 100755 --- a/libremakepkg +++ b/libremakepkg @@ -57,7 +57,7 @@ while getopts ${libremakepkgargs} arg ; do esac done -if [ $UID -ne 0 ]; then +if [ !-w / ]; then error "This script must be run as root" exit 1 fi diff --git a/librestage b/librestage index 6ecb19c..f074672 100755 --- a/librestage +++ b/librestage @@ -79,7 +79,7 @@ for _arch in ${ARCHES[@]}; do pkgpath=$(find ${PKGDEST}/ -type f -name "${pkg}-${pkgver}-${pkgrel}-${_arch}${PKGEXT}") - [[ -z ${pkgpath} ]] && continue; + [[ -z ${pkgpath} ]] && continue pkgfile=$(basename ${pkgpath}) -- cgit v1.1-4-g5e80