Reputation: 43
I'm trying to package an applescript into an existing .app package, and make the applescript run the executable in the same package (which is in the /Contents/MacOS/ directory) with some commandline arguments.
Could someone help me out with the applescript syntax for this?
Upvotes: 0
Views: 178
Reputation: 2435
Use
set myPath to the path to me as text
set myPath to myPath & ":folder:cl_util"
to get the path to a command line utility in the same folder as your script.
Upvotes: 1