fix(moonarch-git): remove untracked walker theme files before upgrade
All checks were successful
Build and publish packages / build-and-publish (push) Successful in 1s

Walker theme files at /etc/xdg/walker/themes/moonarch/ were deployed
manually before the package owned them, causing pacman file conflicts
on upgrade. pre_upgrade hook now removes untracked files so pacman
can take ownership cleanly.
This commit is contained in:
nevaforget 2026-04-08 09:57:40 +02:00
parent 8e2fb5a9f5
commit f837ecbeb4

View File

@ -82,6 +82,14 @@ post_install() {
echo "==> This enables services and configures firewall." echo "==> This enables services and configures firewall."
} }
pre_upgrade() {
# Remove untracked walker theme files from pre-package manual deploys.
# Without this, pacman refuses to overwrite files it doesn't own.
if [ -d /etc/xdg/walker/themes/moonarch ] && ! pacman -Qo /etc/xdg/walker/themes/moonarch/style.css &>/dev/null; then
rm -rf /etc/xdg/walker/themes/moonarch
fi
}
post_upgrade() { post_upgrade() {
post_install post_install
} }