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