Files
WoWee/tools/macos/asset_extractor.applescript
2026-07-14 17:37:34 -07:00

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