From aaedef8b8311bba280ae7d528cdc4f02969c187f Mon Sep 17 00:00:00 2001 From: zhongyic00 <zhong200234@outlook.com> Date: Mon, 12 May 2025 20:25:38 +0800 Subject: [PATCH] fix: truncate on control file creation for repeated runs. --- make-deb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-deb.sh b/make-deb.sh index ab19f29..68c1cb2 100755 --- a/make-deb.sh +++ b/make-deb.sh @@ -176,7 +176,7 @@ DEB_INSTALL_SIZE=(`du -s ./deb-contents/`) echo echo "create control file..." -echo "Package: additional-base-lib" >> ./deb-contents/DEBIAN/control +echo "Package: additional-base-lib" > ./deb-contents/DEBIAN/control echo "Version: $GLIBC_VERSION-$ABL_VERSION" >> ./deb-contents/DEBIAN/control echo "Section: utils" >> ./deb-contents/DEBIAN/control echo "Priority: optional" >> ./deb-contents/DEBIAN/control