Skip to content

Instantly share code, notes, and snippets.

@apizz
Last active July 15, 2020 01:45
Show Gist options
  • Select an option

  • Save apizz/8d4b0a46cc6fc7a88c7d7a4e3d11d85d to your computer and use it in GitHub Desktop.

Select an option

Save apizz/8d4b0a46cc6fc7a88c7d7a4e3d11d85d to your computer and use it in GitHub Desktop.
installcheck_script for appleloops Logic Pro nopkg item for mandatory loops
#!/bin/bash
RECEIPT="/Library/Receipts/.appleLoopsLPMandatoryDone"
# 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