Skip to content

Commit 1d77144

Browse files
Fix slowness by using ./project/scripts/sbt instead of sbt
@allanrenucci before that sbt ran without the -Dsbt.ivy.home option set and the dependencies where downloaded again...
1 parent ec5da87 commit 1d77144

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/scripts/cmdTests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ mkdir -p _site && ./bin/dotd -project Hello -siteroot _site tests/run/hello.scal
9595

9696
echo "running Vulpix meta test"
9797
tmp=$(mktemp)
98-
if sbt -no-colors "dotty-compiler/testOnly dotty.tools.vulpix.VulpixMetaTests" > "$tmp" 2>&1; then
98+
if ./project/scripts/sbt -no-colors "dotty-compiler/testOnly dotty.tools.vulpix.VulpixMetaTests" > "$tmp" 2>&1; then
9999
echo "failed: sbt exited without error on VulpixMetaTests, these tests are expected to fail"
100100
exit -1
101101
fi

0 commit comments

Comments
 (0)