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
This commit is contained in:
Wez Furlong
2023-06-23 11:52:15 -07:00
parent b338347e34
commit ca152156fe
+1 -1
View File
@@ -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