From 5f786671ea3314eb8a63a3c3584734aa4ac1faec Mon Sep 17 00:00:00 2001 From: leafee98 Date: Fri, 24 Mar 2023 20:58:29 +0800 Subject: [PATCH] Fix: "unkown debian package" due to typo debian-binary --- makedeb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makedeb b/makedeb index 5491357..300bcc3 100755 --- a/makedeb +++ b/makedeb @@ -72,7 +72,7 @@ function generate_deb { local tmpdir="$(mktemp --directory)" local data_tgz="${tmpdir}/data.tar.gz" local control_tgz="${tmpdir}/control.tar.gz" - local debian_binary="${tmpdir}/debian_binary" + local debian_binary="${tmpdir}/debian-binary" find "${pkgdir}" -mindepth 1 -not -type d -not -path "${pkgdir}/DEBIAN*" -printf "%P\n" | tar -czf "${data_tgz}" -C "${pkgdir}" -T -