7.0.2 #82

Merged
Ark74 merged 32 commits from unstable into master 2022-06-17 21:36:15 +00:00
1 changed files with 3 additions and 4 deletions
Showing only changes of commit 3acc41dc7f - Show all commits

View File

@ -19,9 +19,8 @@ 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."
if [ $UID != 0 ]; then
echo You need to run this script as root or sudo rights!
exit 1
fi