From bcdd0345120a66a010ceb3d2c7ef5ff23b41cff1 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 21 Mar 2016 12:05:06 +0200 Subject: [PATCH] dist/ubuntu: Install wget package if it's not available The build scripts use wget so make sure it's actually installed on the machine. Message-Id: <1458554706-14558-1-git-send-email-penberg@scylladb.com> --- dist/ubuntu/build_deb.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dist/ubuntu/build_deb.sh b/dist/ubuntu/build_deb.sh index 4485044e35..3e5a1f6ae3 100755 --- a/dist/ubuntu/build_deb.sh +++ b/dist/ubuntu/build_deb.sh @@ -22,6 +22,9 @@ fi if [ ! -f /usr/bin/add-apt-repository ]; then sudo apt-get -y install software-properties-common fi +if [ ! -f /usr/bin/wget ]; then + sudo apt-get -y install wget +fi RELEASE=`lsb_release -r|awk '{print $2}'` CODENAME=`lsb_release -c|awk '{print $2}'`