From 1157aeba879c21edbaee11a8ea02a7ac5851d7b1 Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Wed, 12 Nov 2008 16:22:01 +0100 Subject: worker_package_list returns 0 bugfix --- src/core/procedures/interactive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive index df164c8..731a82d 100644 --- a/src/core/procedures/interactive +++ b/src/core/procedures/interactive @@ -200,7 +200,7 @@ worker_select_source () # prompts the user to select packages to install worker_package_list() { # if selection has been done before, warn about loss of input and let the user exit gracefully - ended_ok worker package_list && _dia_DIALOG --yesno "WARNING: Running this stage again will result in the loss of previous package selections.\n\nDo you wish to continue?" 10 50 || return 0 + ended_ok worker package_list && ! _dia_DIALOG --yesno "WARNING: Running this stage again will result in the loss of previous package selections.\n\nDo you wish to continue?" 10 50 && return 0 interactive_select_packages } -- cgit v1.2.3-54-g00ecf