changeset 2:2abd1acde716

Fix KOTLIN_HOME paths.
author davidb
date Tue, 14 Apr 2020 11:48:32 -0700
parents 5ea54efa8e45
children 394bdafe0cdf
files build.xml setup.sh
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/build.xml	Tue Apr 14 11:46:23 2020 -0700
+++ b/build.xml	Tue Apr 14 11:48:32 2020 -0700
@@ -18,7 +18,7 @@
   <env-require name="KOTLIN_HOME"/>
 
   <!-- define the kotlin task -->
-  <property name="kotlin.lib" value="${env.KOTLIN_HOME}/libexec/lib"/>
+  <property name="kotlin.lib" value="${env.KOTLIN_HOME}/lib"/>
   <typedef resource="org/jetbrains/kotlin/ant/antlib.xml"
            classpath="${kotlin.lib}/kotlin-ant.jar"/>
 
--- a/setup.sh	Tue Apr 14 11:46:23 2020 -0700
+++ b/setup.sh	Tue Apr 14 11:48:32 2020 -0700
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 export JRE_HOME="$(/usr/libexec/java_home)"
-export KOTLIN_HOME="/usr/local/Cellar/kotlin/1.3.61"
+export KOTLIN_HOME="/usr/local/Cellar/kotlin/1.3.61/libexec"
 
 export ANT_HOME="$HOME/java/apache-ant-1.10.1"
 if [[ "$PATH" != *$ANT_HOME/bin* ]]