mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-07-30 17:29:14 -04:00
9 lines
247 B
AppleScript
9 lines
247 B
AppleScript
on run
|
|
set appPath to POSIX path of (path to me)
|
|
set runnerPath to appPath & "Contents/Resources/extract-assets-terminal.sh"
|
|
tell application "Terminal"
|
|
activate
|
|
do script quoted form of runnerPath
|
|
end tell
|
|
end run
|