Remove useless if, /bin/open will handle this itself. Thanks Rene and sorry for

the noise.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32546 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ryan Leavengood 2009-08-20 20:15:39 +00:00
parent fa3f8dcf9f
commit 4197604101
1 changed files with 1 additions and 5 deletions

View File

@ -5,11 +5,7 @@
# Start programs and open files in the boot launch folder
for file in $HOME/config/boot/launch/*
do
if [ -x "$file" ]; then
"$file" &
else
/bin/open "$file" &
fi
/bin/open "$file" &
done
#=====================================================================
# FEEL FREE TO EDIT BELOW