comparison zshrc-jdk @ 132:7f20ec5f5726

bugfix for the PATH generation when switching JDKs
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 13 May 2018 13:56:19 +0200
parents e72a98823522
children 3dd5b3b873aa
comparison
equal deleted inserted replaced
131:e72a98823522 132:7f20ec5f5726
16 switchJdk "oracle-jdk-bin-1.8" 16 switchJdk "oracle-jdk-bin-1.8"
17 } 17 }
18 18
19 jdk9() { 19 jdk9() {
20 export JAVA_HOME=/opt/oracle-jdk-bin-9.0.4 20 export JAVA_HOME=/opt/oracle-jdk-bin-9.0.4
21
22 local new_path=`removeFromPath "jdk"`
21 export PATH="${JAVA_HOME}/bin":"${new_path}" 23 export PATH="${JAVA_HOME}/bin":"${new_path}"
22 java -version 24 java -version
23 } 25 }