Skip to content

Commit 6a92606

Browse files
committed
Cleanup
1 parent f91bfca commit 6a92606

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.drone.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ pipeline:
1111
image: lampepfl/dotty:24-04-2017
1212
pull: true
1313
commands:
14-
- ln -s /var/cache/drone/scala-scala scala-scala
1514
- ln -s /var/cache/drone/ivy2 "$HOME/.ivy2"
1615
- sbt -J-Xmx4096m -J-XX:ReservedCodeCacheSize=512m -J-XX:MaxMetaspaceSize=1024m -Ddotty.drone.mem=4096m "${CI_TEST}"
1716
when:

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ object DottyInjectedPlugin extends AutoPlugin {
997997

998998
private def projectChecks(): Unit = {
999999
val submodules = List(new File("scala-backend"), new File("scala-scala"), new File("collection-strawman"))
1000-
if (!submodules.forall(_.exists)) {
1000+
if (!submodules.forall(f => f.exists && f.listFiles().nonEmpty)) {
10011001
println(
10021002
s"""[WARNING] Missing some of the submodules
10031003
|You can initialize the modules with:

0 commit comments

Comments
 (0)