Skip to content

Commit

Permalink
chore(core: check_runtime_deps): fakeroot is now part of base-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Jun 7, 2024
1 parent 85fd126 commit 63bad56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pikaur/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def check_runtime_deps(dep_names: list[str] | None = None) -> None:
sys.exit(65)
if not dep_names:
privilege_escalation_tool = PikaurConfig().misc.PrivilegeEscalationTool.get_str()
dep_names = ["fakeroot"] + (
dep_names = ["base-devel"] + (
[privilege_escalation_tool] if not RunningAsRoot()() else []
)

Expand Down

0 comments on commit 63bad56

Please sign in to comment.