Skip to content

Instantly share code, notes, and snippets.

@bertfrees
Created January 6, 2016 12:22
Show Gist options
  • Save bertfrees/1c2d0171b999d63359fb to your computer and use it in GitHub Desktop.
Save bertfrees/1c2d0171b999d63359fb to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
case $1 in
7) # the default
# JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home
;;
8)
export JAVA_HOME=$(/usr/libexec/java_home) # /Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home
;;
*)
echo "Unsupported Java version: $1" >&2
exit 1
esac
shift
"$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment