Skip to content

Commit

Permalink
feat(main: check_runtime_deps): improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Jun 7, 2024
1 parent e67a349 commit bbd3fc4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pikaur/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,12 @@ def check_runtime_deps() -> None:
sys.exit(65)
if not get_local_pkg("base-devel"):
print_error(
translate(
"Read damn arch-wiki before borking your computer",
),
"\n".join([
translate(
"Read damn arch-wiki before borking your computer",
),
"https://wiki.archlinux.org/title/Arch_User_Repository",
]),
)
sys.exit(65)
if not RunningAsRoot()():
Expand Down

0 comments on commit bbd3fc4

Please sign in to comment.