dist/debian: drop meaningless lines on build script

These lines comes from scylla-tools-java's build_deb.sh, but does nothing.
So drop them.

Signed-off-by: Takuya ASADA <syuu@scylladb.com>
Message-Id: <20170616035130.16580-1-syuu@scylladb.com>
This commit is contained in:
Takuya ASADA 2017-06-16 12:51:30 +09:00 committed by Avi Kivity
parent 8d404d8e9f
commit 2ca07ac215
1 changed files with 1 additions and 5 deletions

View File

@ -121,11 +121,7 @@ sudo rm -fv /var/cache/pbuilder/$TARGET-base.tgz
sudo -E DIST=$TARGET /usr/sbin/pbuilder clean
sudo -E DIST=$TARGET /usr/sbin/pbuilder create
sudo -E DIST=$TARGET /usr/sbin/pbuilder update
if [ "$TARGET" = "trusty" ]; then
true
elif [ "$TARGET" = "xenial" ]; then
true
elif [ "$TARGET" = "jessie" ]; then
if [ "$TARGET" = "jessie" ]; then
echo "apt-get install -y -t jessie-backports ca-certificates-java" > build/jessie-pkginst.sh
chmod a+rx build/jessie-pkginst.sh
sudo -E DIST=$TARGET /usr/sbin/pbuilder execute build/jessie-pkginst.sh