Fix binary paths in Debian packaging
Some checks failed
Build bootupd with systemd-boot / build (push) Failing after 1m13s

- Copy binaries from /usr/bin instead of current directory
- Fixes 'cannot stat bootupd: No such file or directory' error
- Binaries are installed to /usr/bin by Docker container
- Debian package now correctly includes bootupd and bootupctl
This commit is contained in:
robojerk 2025-09-05 10:35:58 -07:00
parent 593cd81876
commit a2ba3f941f

View file

@ -192,9 +192,9 @@ jobs:
mkdir -p bootupd-package/usr/bin
mkdir -p bootupd-package/DEBIAN
# Copy binaries
cp bootupd bootupd-package/usr/bin/
cp bootupctl bootupd-package/usr/bin/
# Copy binaries from /usr/bin where they were installed
cp /usr/bin/bootupd bootupd-package/usr/bin/
cp /usr/bin/bootupctl bootupd-package/usr/bin/
chmod +x bootupd-package/usr/bin/bootupd
chmod +x bootupd-package/usr/bin/bootupctl