File tree 1 file changed +5
-4
lines changed 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ ReplMain=test.DottyRepl
42
42
43
43
# autodetecting the compiler jar. this is location where sbt 'packages' it
44
44
MAIN_JAR=$DOTTY_ROOT /target/scala-$SCALA_BINARY_VERSION /dotty_$SCALA_BINARY_VERSION -$DOTTY_VERSION .jar
45
- TEST_JAR=$DOTTY_ROOT /target/scala-$SCALA_BINARY_VERSION /dotty_$SCALA_BINARY_VERSION -$DOTTY_VERSION -tests.jar
45
+ # TEST_JAR=$DOTTY_ROOT/target/scala-$SCALA_BINARY_VERSION/dotty_$SCALA_BINARY_VERSION-$DOTTY_VERSION-tests.jar
46
+
46
47
function checkjar {
47
48
if [ ! -f " $1 " ]
48
49
then
@@ -61,7 +62,7 @@ function checkjar {
61
62
}
62
63
63
64
checkjar $MAIN_JAR package
64
- checkjar $TEST_JAR test:package
65
+ # checkjar $TEST_JAR test:package
65
66
66
67
# Autodetecting the scala-library location, in case it wasn't provided by an environment variable
67
68
if [ " $SCALA_LIBRARY_JAR " == " " ]
@@ -179,9 +180,9 @@ trap onExit INT
179
180
# to java to suppress "." from materializing.
180
181
classpathArgs () {
181
182
if [[ -n $bootcp ]]; then
182
- echo " -Xbootclasspath/a:$SCALA_LIBRARY_JAR :$SCALA_REFLECT_JAR :$SCALA_COMPILER_JAR :$JLINE_JAR :$MAIN_JAR -classpath $MAIN_JAR : $TEST_JAR "
183
+ echo " -Xbootclasspath/a:$SCALA_LIBRARY_JAR :$SCALA_REFLECT_JAR :$SCALA_COMPILER_JAR :$JLINE_JAR :$MAIN_JAR -classpath $MAIN_JAR "
183
184
else
184
- echo " -classpath $SCALA_LIBRARY_JAR :$SCALA_REFLECT_JAR :$SCALA_COMPILER_JAR :$JLINE_JAR :$MAIN_JAR : $TEST_JAR "
185
+ echo " -classpath $SCALA_LIBRARY_JAR :$SCALA_REFLECT_JAR :$SCALA_COMPILER_JAR :$JLINE_JAR :$MAIN_JAR "
185
186
fi
186
187
}
187
188
You can’t perform that action at this time.
0 commit comments