Skip to content

Instantly share code, notes, and snippets.

@timsutton
Created December 20, 2012 16:22
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 timsutton/4346386 to your computer and use it in GitHub Desktop.
Save timsutton/4346386 to your computer and use it in GitHub Desktop.
Adobe AIR user login script to make sure EULA is accepted and updates are disabled.
#!/bin/sh
AIRPATH="$HOME/Library/Application Support/Adobe/AIR"
if [[ ! -d "$AIRPATH" ]]; then
mkdir -p "$AIRPATH"
fi
echo 99 > "$AIRPATH/eulaAccepted"
echo 1 > "$AIRPATH/updateDisabled"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment