Skip to content

Instantly share code, notes, and snippets.

@rtrouton
Created October 19, 2018 17:56
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 rtrouton/a507a6ab77de17099eeced5f2af1262a to your computer and use it in GitHub Desktop.
Save rtrouton/a507a6ab77de17099eeced5f2af1262a to your computer and use it in GitHub Desktop.
Preinstall script for AutoPkg-built OpenJDK installer
#!/bin/bash
# Remove existing OpenJDK 11 installations
for JAVADIR in "$3"/Library/Java/JavaVirtualMachines/jdk-11*; do
rm -rf "$JAVADIR"
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment