From 82f85b8aef8f0a2f76d73958f45a989d5834e0da Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 4 Feb 2022 16:03:02 -0500 Subject: [PATCH] Fix deb build of vtbuffered --- confluent_vtbufferd/builddeb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_vtbufferd/builddeb b/confluent_vtbufferd/builddeb index 1d5d86a7..af61218f 100755 --- a/confluent_vtbufferd/builddeb +++ b/confluent_vtbufferd/builddeb @@ -19,8 +19,8 @@ mv $PKGNAME $DPKGNAME-${VERSION} sed -i s/%%VERSION%%/$VERSION/ $DPKGNAME-${VERSION}/debian/changelog tar cvzf ${DPKGNAME}_${VERSION}.orig.tar.gz $DPKGNAME-${VERSION} cd $DPKGNAME-${VERSION} -debuild -us -uc +debuild --no-lintian -us -uc if [ ! -z "$1" ]; then - mv /tmp/confluent/$DPKGNAME_${VERSION}*.deb $1/ + mv /tmp/confluent/$DPKGNAME-${VERSION}*.deb $1/ fi exit 0