Fix binary paths in Debian packaging
Some checks failed
Build bootupd with systemd-boot / build (push) Failing after 1m13s
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:
parent
593cd81876
commit
a2ba3f941f
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue