In a build script for the IDE communicator I build 3 apps. At the end of each there is a notification that one app is finished. Since the building can take a couple of minutes I’ve sometimes missed the end of building. Therefore I thought I’d simply add a
print("Finished with building!")
to the end of the build script. This, however, only gives a result back and doesn’t show any messagebox:
{
"tag":"build",
"response":"Finished with building!"
}
I could write myself a simple AppleScript to execute with osascript in the shell. But this tends to be complicated because of the quoting.
Is there an easier way?