From f9a76d15c1f1d3a629938e9d6f36dd8661769f74 Mon Sep 17 00:00:00 2001 From: Botspot Date: Wed, 7 Oct 2020 09:15:51 -0500 Subject: [PATCH] --no-install-recommends --- pkg-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg-install b/pkg-install index 065760c..b5720a2 100755 --- a/pkg-install +++ b/pkg-install @@ -61,7 +61,7 @@ if [ ! -z "$INSTALL_LIST" ];then echo "$INSTALL_LIST" >> "${DIRECTORY}/data/installed-packages/${PRG}" echo -e "These packages will be installed: \e[2m$INSTALL_LIST\e[22m" - output="$(sudo apt-get install -y $INSTALL_LIST 2>&1)" + output="$(sudo apt-get install -y --no-install-recommends $INSTALL_LIST 2>&1)" exitcode=$? echo "Output was: ${output}EOO"