Fix apt-get thinking it's interractive

This commit is contained in:
ViViDboarder 2021-06-09 17:04:25 -07:00
parent f3d5aa0bd9
commit 76b828a6a7
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ sudo_package () {
if [ "$PACKAGE_MANAGER" == 'apt-get' ]; then
# shellcheck disable=2086,2048
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y $*
sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y $*
elif [ "$PACKAGE_MANAGER" == 'yum' ]; then
# shellcheck disable=2086,2048
sudo yum install -y $*