Skip to content

Commit

Permalink
[skip ci] Updated installation script to not prompt for user input (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarwalTT authored Dec 17, 2024
1 parent 55bb502 commit 6799677
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ FLAVOR=`grep '^ID=' /etc/os-release | awk -F= '{print $2}' | tr -d '"'`
VERSION=`grep '^VERSION_ID=' /etc/os-release | awk -F= '{print $2}' | tr -d '"'`
MAJOR=${VERSION%.*}
ARCH=`uname -m`
DEBIAN_FRONTEND="noninteractive"

usage()
{
Expand Down Expand Up @@ -122,7 +121,7 @@ install()
prep_ubuntu

echo "Installing packages..."
apt-get install -y --no-install-recommends "${UB_LIST[@]}"
DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends "${UB_LIST[@]}"
fi
}

Expand Down

0 comments on commit 6799677

Please sign in to comment.