diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.sh b/lib/util.sh index 62076a9..c1a82e8 100644 --- a/lib/util.sh +++ b/lib/util.sh @@ -47,7 +47,7 @@ checkdep() if which apt-get > /dev/null 2>&1 && \ which sudo > /dev/null 2>&1; then echo ", installing $package:" - sudo apt-get -qq install "$package" + sudo apt-get -qq install --no-install-recommends "$package" else echo ", please install" exit 1 |