2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-21 17:11:58 +00:00

Finish changes to builddeb script for vtbufferd

This commit is contained in:
Jarrod Johnson 2021-07-01 16:45:20 -04:00
parent 90bde09c82
commit dd4f329139

3
confluent_vtbufferd/builddeb Normal file → Executable file
View File

@ -20,4 +20,7 @@ sed -i s/%%VERSION%%/$VERSION/ $DPKGNAME-${VERSION}/debian/changelog
tar cvzf ${DPKGNAME}_${VERSION}.orig.tar.gz $DPKGNAME-${VERSION}
cd $DPKGNAME-${VERSION}
debuild -us -uc
if [ ! -z "$1" ]; then
mv /tmp/confluent/$DPKGNAME_${VERSION}*.deb $1/
fi
exit 0