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