summaryrefslogtreecommitdiff
path: root/libremakepkg
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-06-02 13:08:36 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-06-02 13:08:36 -0300
commit9127f25aff12902bf58302982c104704a5bdf202 (patch)
tree7cd485547b8f50f681fc1edf846e311e79ecfca0 /libremakepkg
parent7e528534a2f7ff687cedac6b34c3881d97be0716 (diff)
Better root user check
Diffstat (limited to 'libremakepkg')
-rwxr-xr-xlibremakepkg2
1 files changed, 1 insertions, 1 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