2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 02:52:07 +00:00

Actually apply sed to file

The sed was failing to save result to disk.
This commit is contained in:
Jarrod Johnson 2019-02-11 11:20:59 -05:00
parent e0877bc0b1
commit b42114bea0

View File

@ -21,7 +21,7 @@ py2dsc dist/*.tar.gz
shopt -s extglob
cd deb_dist/!(*.orig)/
if [ "$DPKGNAME" = "confluent-server" ]; then
sed -e 's/^\(Depends:.*\)/\1, python-lxml, python-eficompressor, python-pycryptodomex/' debian/control
sed -i 's/^\(Depends:.*\)/\1, python-lxml, python-eficompressor, python-pycryptodomex/' debian/control
fi
dpkg-buildpackage -rfakeroot -uc -us -i
if [ $? -ne 0 ]; then