Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save apizz/cc59d97995f94e38b44bae9f3f1d4eed to your computer and use it in GitHub Desktop.
Save apizz/cc59d97995f94e38b44bae9f3f1d4eed to your computer and use it in GitHub Desktop.
installcheck_script for appleloops Logic Pro nopkg item for optional loops
#!/bin/bash
RECEIPT="/Library/Receipts/.appleLoopsLPOptionalDone"
# If RECEIPT not present, run nopkg postinstall script
if [ ! -f "$RECEIPT" ]; then
exitcode=0
else
exitcode=1
fi
exit $exitcode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment