File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ SCALA_ASM=$(find_lib "*scala-asm*")
119119SCALA_LIB=$( find_lib " *scala-library*" )
120120SCALA_XML=$( find_lib " *scala-xml*" )
121121SBT_INTF=$( find_lib " *compiler-interface*" )
122+ JLINE=$( find_lib " *jline*" )
122123
123124# debug
124125DEBUG_STR=-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005
Original file line number Diff line number Diff line change @@ -63,7 +63,11 @@ classpathArgs () {
6363 toolchain+=" $SBT_INTF$PSEP "
6464 toolchain+=" $DOTTY_INTF$PSEP "
6565 toolchain+=" $DOTTY_LIB$PSEP "
66- toolchain+=" $DOTTY_COMP "
66+ toolchain+=" $DOTTY_COMP$PSEP "
67+
68+ # JLine is mutiple jars
69+ local all_jline=$( echo " $JLINE " | tr " " " $PSEP " )
70+ toolchain+=" $all_jline "
6771
6872 if [[ -n " $bootcp " ]]; then
6973 jvm_cp_args=" -Xbootclasspath/a:\" $toolchain \" "
You can’t perform that action at this time.
0 commit comments