Skip to content

Instantly share code, notes, and snippets.

@abrkn
Created December 21, 2017 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abrkn/346636e80d831ed1160917d6ee5ddc4d to your computer and use it in GitHub Desktop.
Save abrkn/346636e80d831ed1160917d6ee5ddc4d to your computer and use it in GitHub Desktop.
Install Adobe Creative Cloud with minimal user interaction
#!/usr/bin/env bash
# Adobe Creative Cloud
if [ ! -d "/Applications/Adobe Creative Cloud/" ]; then
dmg=CreativeCloudInstaller.dmg
dir=$(mktemp -d)
pushd "$dir"
curl -O "https://ccmdls.adobe.com/AdobeProducts/PHSP/19_0_1/osx10-64/AAMmetadataLS20/$dmg"
mkdir -p mount
hdiutil attach -mountpoint mount "$dmg"
pushd mount
open -W "Creative Cloud Installer.app"
popd # $dir
hdiutil detach mount
rm "$dmg"
popd # prev
rm -rf "$dir"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment