From a6bba2c3627aa292b86e1ca162b1390e6f70b30b Mon Sep 17 00:00:00 2001 From: Breadway Date: Fri, 17 Jul 2026 03:18:38 +0800 Subject: [PATCH] breadbox: fix packaged systemd unit ExecStart path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The PKGBUILD installs breadbox-sync to /usr/bin, but the packaged unit pointed at %h/.cargo/bin/breadbox-sync — a path that only exists for cargo installs. A pacman install shipped a unit that could never find its binary. bakery-based installs already patch ExecStart at install time, so this only affects the pacman channel, but it needed fixing there. --- packaging/breadbox-sync.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/breadbox-sync.service b/packaging/breadbox-sync.service index ac3e6f4..9fc59ef 100644 --- a/packaging/breadbox-sync.service +++ b/packaging/breadbox-sync.service @@ -5,7 +5,7 @@ After=network.target [Service] Type=oneshot -ExecStart=%h/.cargo/bin/breadbox-sync +ExecStart=/usr/bin/breadbox-sync StandardOutput=journal StandardError=journal # Allow up to 2 minutes for slow icon downloads