summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-12 16:22:01 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-12 16:22:01 +0100
commit1157aeba879c21edbaee11a8ea02a7ac5851d7b1 (patch)
treebf490fec36e2983b1e686f678406bc2795a51eaf
parentd51f28c8165051ff46062633fc9f7417a5ba3abd (diff)
worker_package_list returns 0 bugfix
-rw-r--r--src/core/procedures/interactive2
1 files changed, 1 insertions, 1 deletions
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
}