libroot_debug.so: Fix missing alignment in guarded realloc.
[haiku.git] / data / bin / welcome
blobe82a9ec836f027025b2210a6c98039d4b207d966
1 #!/bin/sh
3 welcomeURL="\
4 http://cgit.haiku-os.org/haiku/plain/docs/welcome/welcome_en.html"
5 welcomeDir=/boot/system/documentation/welcome/
6 welcomeFile=$welcomeDir/welcome_en.html
7 localizedWelcomeFile=$welcomeDir/welcome_"$LANG".html
9 if [ -f $localizedWelcomeFile ]; then
10 open file://$localizedWelcomeFile
11 elif [ -f $welcomeFile ]; then
12 open $welcomeFile
13 else
14 open $welcomeURL