-- gets the path to bouml folder
tell application "Finder"
	activate
	-- gets path to this script, in path:to:me format
	set localPath to container of (path to me) as string
	-- convert Mac Path into Unix Path
	set unixPath to quoted form of the POSIX path of localPath
end tell
-- execute the unix script init.sh
-- display dialog unixPath buttons {"OK"}
do shell script "/bin/tcsh " & unixPath & "/.lib/init.csh " & unixPath & " &> /dev/null &"
quit
