diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2009-02-15 13:01:10 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2009-02-15 13:01:10 +0100 |
commit | dc264c36fdfc6dbd076517c43034dfc44eb01b97 (patch) | |
tree | 624bbf6952253f0d1265eb8e88baeb8b13ed115a /src/core | |
parent | e64c05d26b468b3434d558de1bbb3513e2a62bf0 (diff) |
add --noconfirm when installing packages
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/libs/lib-software.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/libs/lib-software.sh b/src/core/libs/lib-software.sh index 9cbc34d..726d20f 100644 --- a/src/core/libs/lib-software.sh +++ b/src/core/libs/lib-software.sh @@ -26,7 +26,7 @@ run_mkinitcpio() installpkg() { notify "Package installation will begin now. You can watch the output in the progress window. Please be patient." target_special_fs on - run_background pacman-installpkg "$PACMAN_TARGET -S $TARGET_PACKAGES" $TMP_PACMAN_LOG #TODO: There may be something wrong here. See http://projects.archlinux.org/?p=installer.git;a=commitdiff;h=f504e9ecfb9ecf1952bd8dcce7efe941e74db946 ASKDEV (Simo) + run_background pacman-installpkg "$PACMAN_TARGET --noconfirm -S $TARGET_PACKAGES" $TMP_PACMAN_LOG #TODO: There may be something wrong here. See http://projects.archlinux.org/?p=installer.git;a=commitdiff;h=f504e9ecfb9ecf1952bd8dcce7efe941e74db946 ASKDEV (Simo) follow_progress " Installing... Please Wait " $TMP_PACMAN_LOG wait_for pacman-installpkg |