Last active
July 15, 2020 01:45
-
-
Save apizz/ca0b30225df9f01cd163379e1fb9acd5 to your computer and use it in GitHub Desktop.
installcheck_script for appleloops GarageBand nopkg item for mandatory loops
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| RECEIPT="/Library/Receipts/.appleLoopsGBMandatoryDone" | |
| # 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