index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | src/pacman/remove.c | 3 |
diff --git a/src/pacman/remove.c b/src/pacman/remove.c index 56837fa2..fde5c737 100644 --- a/src/pacman/remove.c +++ b/src/pacman/remove.c @@ -155,7 +155,8 @@ int pacman_remove(alpm_list_t *targets) list_display(_("Targets:"), lst); FREELIST(lst); /* get confirmation */ - if(yesno(_("\nDo you want to remove these packages? [Y/n] ")) == 0) { + if(!config->noconfirm + && yesno(_("\nDo you want to remove these packages? [Y/n] ")) == 0) { remove_cleanup(); FREELIST(finaltargs); return(1); |