Issue #223
Surround script by single quotes
let script =
"""
tell application "XcodeWay"
activate
end tell
"""
let command = "osascript -e '\(script)'"
let process = Process()
process.launchPath = "/bin/bash"
process.arguments = ["-c", command]
Run as administrator
In terminal, we can
cd ~/Library
sudo mkdir MyNewFolder
In code, we use with administrator privileges, this when run will ask for password or fingerprint
do shell script "mkdir MyNewFolder" with administrator privileges
Start the conversation