From d07bfc2bb039f8b9b031b6d75cbbf7cda114e0fc Mon Sep 17 00:00:00 2001 From: Wouter Gordts Date: Thu, 29 Sep 2022 17:08:39 +0200 Subject: [PATCH] removes recommends from apt dep --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index d2e3ca8..200f0fd 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -26,7 +26,7 @@ fi function install_apt_dependencies () { sudo apt-get update > /dev/null && echo "cache updated" - sudo apt-get install -y $DEPENDENCIES_APT > /dev/null && echo "all installed!" + sudo apt-get install -y --no-install-recommends $DEPENDENCIES_APT > /dev/null && echo "all installed!" echo "--- ${FUNCNAME[0]} done" }