blob: 2b34da1b04ed7f3ef71d9a266357d4cc901c01b6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# shell script as a workaraound since it is hard to impossible to store compiled
# applescript in CVS and running osacompile would require a GUI session while
# building (or root privileges)
# using osascript only works when the shell script is camouflaged as application
MY_DIR=$(dirname "$0")
osascript "$MY_DIR/osx_install.applescript"
|