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 8591fe6 commit ea97378Copy full SHA for ea97378
compiler/test/dotty/tools/vulpix/ParallelTesting.scala
@@ -1426,9 +1426,9 @@ object ParallelTesting {
1426
dir
1427
else
1428
import scala.sys.process._
1429
- val zipPath = cache.resolve(s"scala3-$version.zip")
1430
- val compilerDownloadUrl = s"https://github.com/lampepfl/dotty/releases/download/$version/scala3-$version.zip"
1431
- (URL(compilerDownloadUrl) #>> zipPath.toFile #&& s"unzip $zipPath -d $cache").!!
+ val zipPath = cache.resolve(s"scala3-$version.tar.gz")
+ val compilerDownloadUrl = s"https://github.com/lampepfl/dotty/releases/download/$version/scala3-$version.tar.gz"
+ (URL(compilerDownloadUrl) #>> zipPath.toFile #&& s"tar -xf $zipPath -C $cache").!!
1432
1433
}
1434
0 commit comments