Merge pull request #562 from dylanmtaylor/hide-requires-root-if-root

Only print requires root messages if effective user id is not root
This commit is contained in:
Anton Hvornum 2021-06-10 11:53:43 +02:00 committed by GitHub
commit 14aeb3b177
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ def check_mirror_reachable():
if (exit_code := SysCommand("pacman -Sy").exit_code) == 0:
return True
elif exit_code == 256:
log("check_mirror_reachable() uses 'pacman -Sy' which requires root.", level=logging.ERROR, fg="red")
if os.geteuid() != 0:
log("check_mirror_reachable() uses 'pacman -Sy' which requires root.", level=logging.ERROR, fg="red")
return False