From 584c1e7f849f253a1413a2c6b54e38eb8c6ce237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 6 Mar 2008 10:55:47 +0000 Subject: [PATCH] Run installer synchronously so quitting it will end the script. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24264 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- data/system/boot/Bootscript.cd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data/system/boot/Bootscript.cd b/data/system/boot/Bootscript.cd index 617f0f0e68..2ff823c922 100644 --- a/data/system/boot/Bootscript.cd +++ b/data/system/boot/Bootscript.cd @@ -72,13 +72,13 @@ fi # Launch Terminal or consoled depending on $SAFEMODE if [ "$SAFEMODE" != "yes" ]; then - if [ -x /boot/apps/Installer ]; then - launch /boot/apps/Installer - #/boot/apps/Terminal -x /boot/apps/Installer + if [ -x /boot/beos/apps/Installer ]; then + /boot/beos/apps/Installer + #/boot/beos/apps/Terminal -x /boot/beos/apps/Installer else - #launch /boot/apps/Terminal + /boot/beos/apps/Terminal fi - launch beos/apps/Terminal + #launch beos/apps/Terminal else launch beos/bin/consoled fi