diff options
| author | Craig Jennings <c@cjennings.net> | 2026-07-18 19:46:05 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-07-18 19:46:05 -0500 |
| commit | be2277d0db1afa06c1a1ab468f70b34c8d98e0a1 (patch) | |
| tree | bd38eb5586a84dc22c55b502ca8b8caecf734f97 /scripts/testing/tests/test_desktop.py | |
| parent | cc358cffc4d02946a8e6fb649219443f40cee782 (diff) | |
| download | archsetup-be2277d0db1afa06c1a1ab468f70b34c8d98e0a1.tar.gz archsetup-be2277d0db1afa06c1a1ab468f70b34c8d98e0a1.zip | |
fix: order pacman safety hooks
Install snapshot and live-update hooks before mkinitcpio removal, migrate legacy paths, and cover the ordering invariant.
Diffstat (limited to 'scripts/testing/tests/test_desktop.py')
| -rw-r--r-- | scripts/testing/tests/test_desktop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/testing/tests/test_desktop.py b/scripts/testing/tests/test_desktop.py index 6f79bfd..468bc75 100644 --- a/scripts/testing/tests/test_desktop.py +++ b/scripts/testing/tests/test_desktop.py @@ -56,7 +56,7 @@ def test_live_update_guard_installed(host, hyprland_installed): guard = host.file("/usr/local/bin/hypr-live-update-guard") assert guard.exists, "live-update guard script missing" assert guard.mode & 0o111, "live-update guard not executable" - hook = host.file("/etc/pacman.d/hooks/hypr-live-update-guard.hook") + hook = host.file("/etc/pacman.d/hooks/10-hypr-live-update-guard.hook") assert hook.exists, "live-update guard pacman hook missing" assert "hypr-live-update-guard" in hook.content_string, \ "hook does not invoke the guard script" |
