summaryrefslogtreecommitdiff
path: root/src/core/procedures/interactive
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-04-13 18:23:14 +0200
committerDieter Plaetinck <dieter@plaetinck.be>2009-04-13 18:23:14 +0200
commit46d707eb42974cd9c43af7301b801aa27491f30d (patch)
treeddc5a73edf065300bd9d8d2a57425997ae380cbe /src/core/procedures/interactive
parentf6035661d65df49c51bbcc3a9dd9c835defb80dd (diff)
if one or more "extra" workers after the main one return false, that doesnt mean the whole thing failed
Diffstat (limited to 'src/core/procedures/interactive')
-rw-r--r--src/core/procedures/interactive6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index 4a442a4..3cd535e 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -79,11 +79,13 @@ mainmenu()
check_depend worker select_source && execute worker install_packages && { execute worker auto_fstab ; \
ended_ok worker runtime_network && execute worker auto_network ; \
execute worker auto_locale ; \
- execute worker auto_keymap_font; } && NEXTITEM=6 ;;
+ execute worker auto_keymap_font;
+ true ; } && NEXTITEM=6 ;;
"6")
check_depend worker install_packages && execute worker configure_system && { execute worker mkinitcpio ; \
execute worker locales ;
- execute worker initialtime ; } && NEXTITEM=7 ;; #TODO: why is next item 4 if $?=0?. maybe fixed now
+ execute worker initialtime ;
+ true ; } && NEXTITEM=7 ;;
"7")
check_depend worker configure_system && execute worker install_bootloader && NEXTITEM=8 ;;
"8")