Created
November 21, 2021 15:34
-
-
Save macmule/b31bd78df4452674f7593050805b7b83 to your computer and use it in GitHub Desktop.
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/sh | |
| ## postinstall | |
| targetVolume=$3 | |
| ## Delete the AutoCasperNBI installed Casper Imaging launch agent | |
| rm -rf "$3"/Library/LaunchAgents/com.AutoCasperNBI.CasperImaging.plist | |
| ## If the launch agent exists after the above, error | |
| if [ -f "$3"/Library/LaunchAgents/com.AutoCasperNBI.CasperImaging.plist ]; | |
| then | |
| echo "Error: com.AutoCasperNBI.CasperImaging.plist not deleted…" | |
| exit 1 | |
| else | |
| echo "Success: com.AutoCasperNBI.CasperImaging.plist deleted…" | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment