From bd35f4be8bcd23fdc58682a92622c5928dbc0114 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 16 Apr 2007 13:03:41 +0200 Subject: [PATCH] Fix APTINSTALL variable --- chroot-script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chroot-script b/chroot-script index cdb6c0a..40646fa 100644 --- a/chroot-script +++ b/chroot-script @@ -16,10 +16,10 @@ set -e # exit on any error # use aptitude only if it's available if [ -x /usr/bin/aptitude ] ; then - APTINSTALL='aptitude -y' + APTINSTALL='aptitude -y install ' APTUPDATE='aptitude update' else - APTINSTALL='apt-get --force-yes -y' + APTINSTALL='apt-get --force-yes -y install' APTUPDATE='apt-get update' fi -- 2.1.4