This commit is contained in:
TomasM
2017-10-15 06:29:31 -04:00
parent accf72e043
commit c5ab475846
2 changed files with 81 additions and 2 deletions
+2 -2
View File
@@ -20,9 +20,9 @@ alias l='ls $LS_OPTIONS -lA'
apt-get()
{
if [ -e /var/cache/apt/pkgcache.bin ]; then
/usr/bin/apt-get "$@"
/usr/bin/apt-get --no-install-recommends "$@"
else
/usr/bin/apt-get update
/usr/bin/apt-get "$@"
/usr/bin/apt-get --no-install-recommends "$@"
fi
}