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
This commit is contained in:
François Revol 2008-03-06 10:55:47 +00:00
parent 9906039303
commit 584c1e7f84

View File

@ -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