From 2628755bbc7244586eb32c94f97a83afe37bcf2e Mon Sep 17 00:00:00 2001 From: s3lph <s3lph@kabelsalat.ch> Date: Sat, 18 Jan 2025 20:18:29 +0100 Subject: [PATCH] fix(bsnotify): path of script to copy to /usr/bin --- bsnotify/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsnotify/build.sh b/bsnotify/build.sh index 49fca64..06536bb 100755 --- a/bsnotify/build.sh +++ b/bsnotify/build.sh @@ -18,7 +18,7 @@ function prepare() { "${PKGDIR}/usr/bin" \ "${PKGDIR}/etc/default" \ "${PKGDIR}/lib/systemd/system" - cp "${SRCDIR}/bsnotify" "${PKGDIR}/usr/bin/bsnotify" + cp "${SRCDIR}/bsnotify/bsnotify" "${PKGDIR}/usr/bin/bsnotify" cp "${ROOT}/bsnotify.defaults" "${PKGDIR}/etc/default/bsnotify" cp "${ROOT}/bsnotify.service" "${PKGDIR}/lib/systemd/system/bsnotify.service" cp "${ROOT}/debian.control" "${PKGDIR}/DEBIAN/control"