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*")
119
119
SCALA_LIB=$( find_lib " *scala-library*" )
120
120
SCALA_XML=$( find_lib " *scala-xml*" )
121
121
SBT_INTF=$( find_lib " *compiler-interface*" )
122
+ JLINE=$( find_lib " *jline*" )
122
123
123
124
# debug
124
125
DEBUG_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 () {
63
63
toolchain+=" $SBT_INTF$PSEP "
64
64
toolchain+=" $DOTTY_INTF$PSEP "
65
65
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 "
67
71
68
72
if [[ -n " $bootcp " ]]; then
69
73
jvm_cp_args=" -Xbootclasspath/a:\" $toolchain \" "
You can’t perform that action at this time.
0 commit comments