From 60c37ee0eb5ba173c4bdc7763d94bb603afd17aa Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Sat, 10 Jan 2026 18:13:54 -0700 Subject: [PATCH] Fix error handling and improve changelog installation --- debian/rules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/rules b/debian/rules index 6b5ad14b..9631dd73 100755 --- a/debian/rules +++ b/debian/rules @@ -11,8 +11,8 @@ override_dh_auto_configure: -Dwith-lua=lua53 override_dh_installchangelogs: - set -e; \ + set -eux; \ for p in $$(dh_listpackages); do \ - install -d "debian/$$p/usr/share/doc/$$p"; \ + mkdir -p "debian/$$p/usr/share/doc/$$p"; \ + dh_installchangelogs -p"$$p" debian/changelog.txt; \ done - dh_installchangelogs debian/changelog.txt