I'm making a script that automatically installs Vivaldi. I've put the .app file inside the package contents (in the resources folder), and I want it to move the app to the Applications folder. So, I have 2 questions:
- Is this actually possible?
- If so, how?
I have this so far:
set Vivaldi to ((path to me as string) & "Contents:Resources:Vivaldi.app")
set AppFolder to "Macintosh HD/Applications/"
tell application "Finder"
move application Vivaldi to AppFolder
end tell