-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
jabba install 1.8
does not install javac
#350
Comments
The download link is correct. I tried the direct installation from oracle site and it works. (I am using OSX) People who wants to change jdk versions locally installed might use this bash function temporarily. // for OSX
// usage: setjdk 1.8
function setjdk() {
if [ $# -ne 0 ]; then
removeFromPath '/System/Library/Frameworks/JavaVM.framework/Home/bin'
if [ -n "${JAVA_HOME+x}" ]; then
removeFromPath $JAVA_HOME
fi
export JAVA_HOME=`/usr/libexec/java_home -v $@`
export PATH=$JAVA_HOME/bin:$PATH
fi
}
function removeFromPath() {
export PATH=$(echo $PATH | sed -E -e "s;:$1;;" -e "s;$1:?;;")
} |
Sorry guys, for some reason "Notifications" were set to "Not Watching" and so I wasn't getting any messages for over 3 weeks. Fixed in 0.11.1. |
Hi and thanks for fixing this in Looks like for version |
#138 - homebrew is not currently supported. |
This looks like only the JRE has been installed
The text was updated successfully, but these errors were encountered: