From 4197604101e2810488b67934204289449c6d5c9b Mon Sep 17 00:00:00 2001 From: Ryan Leavengood Date: Thu, 20 Aug 2009 20:15:39 +0000 Subject: [PATCH] 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 --- data/config/boot/UserBootscript | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/data/config/boot/UserBootscript b/data/config/boot/UserBootscript index 8198ad1124..0f84558c3f 100644 --- a/data/config/boot/UserBootscript +++ b/data/config/boot/UserBootscript @@ -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