From ca152156febb9ffe30c950262e34cea4bef96473 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 23 Jun 2023 11:52:15 -0700 Subject: [PATCH] build-deb: include version number in filename I suspect that using the same name on upload to openrepo somehow collides with other versions that use the same uploaded filename. refs: https://github.com/openkilt/openrepo/issues/11 --- assets/build-deb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/build-deb.sh b/assets/build-deb.sh index e16eaaea..bfc17d6f 100755 --- a/assets/build-deb.sh +++ b/assets/build-deb.sh @@ -114,7 +114,7 @@ sed -i '/^Source:/d' pkg/debian/DEBIAN/control # The `Source:` field needs to b echo $deps | sed -e 's/shlibs:Depends=/Depends: /' >> pkg/debian/DEBIAN/control cat pkg/debian/DEBIAN/control -debname=${DEB_NAME}.$distro$distver +debname=${DEB_NAME}.${KUMO_DEB_VERSION}.$distro$distver find pkg -ls FAKEROOT=fakeroot if test "$EUID" -eq 0 ; then