mirror of
https://github.com/vrc-get/vrc-get.git
synced 2026-06-21 09:58:08 +00:00
8 lines
145 B
AppleScript
8 lines
145 B
AppleScript
#!/usr/bin/env osascript
|
|
|
|
on run (folderName)
|
|
tell application "Finder"
|
|
activate
|
|
open folder folderName
|
|
end tell
|
|
end run
|