We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b055bc4 commit e8fb849Copy full SHA for e8fb849
dist/bin/common
@@ -119,6 +119,7 @@ SCALA_ASM=$(find_lib "*scala-asm*")
119
SCALA_LIB=$(find_lib "*scala-library*")
120
SCALA_XML=$(find_lib "*scala-xml*")
121
SBT_INTF=$(find_lib "*compiler-interface*")
122
+JLINE=$(find_lib "*jline*")
123
124
# debug
125
DEBUG_STR=-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005
dist/bin/dotc
@@ -63,7 +63,11 @@ classpathArgs () {
63
toolchain+="$SBT_INTF$PSEP"
64
toolchain+="$DOTTY_INTF$PSEP"
65
toolchain+="$DOTTY_LIB$PSEP"
66
- toolchain+="$DOTTY_COMP"
+ toolchain+="$DOTTY_COMP$PSEP"
67
+
68
+ # JLine is mutiple jars
69
+ local all_jline=$(echo "$JLINE" | tr " " "$PSEP")
70
+ toolchain+="$all_jline"
71
72
if [[ -n "$bootcp" ]]; then
73
jvm_cp_args="-Xbootclasspath/a:\"$toolchain\""
0 commit comments