-
-
Save elmer-garduno/7614942 to your computer and use it in GitHub Desktop.
Update java alternatives in OS X. Simple script to switch between java alternatives.
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 | |
cd /System/Library/Frameworks/JavaVM.framework/Versions | |
sudo rm -r CurrentJDK | |
if [ $1 = "6" ]; then | |
sudo ln -s /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents CurrentJDK | |
fi | |
if [ $1 = "7" ]; then | |
sudo ln -s /Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/ CurrentJDK | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment