Actually require to run with admin rights.

This commit is contained in:
Luis Guzmán 2022-04-07 02:55:00 -05:00
parent 7d162f8ade
commit 3acc41dc7f
1 changed files with 3 additions and 4 deletions

View File

@ -19,10 +19,9 @@ done
}
# Check if user is root
if [ $(id -u) = 0 ]; then
echo "Please don't run with root or sudo privileges!
> We'll request them when necessary."
exit 1
if [ $UID != 0 ]; then
echo You need to run this script as root or sudo rights!
exit 1
fi
TMP_DIR="$(mktemp -d)"