Skip to content

Commit bbb2eaa

Browse files
committed
Cleanup
1 parent 5d61b1d commit bbb2eaa

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
@@ -902,7 +902,7 @@ object DottyInjectedPlugin extends AutoPlugin {
902902

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

0 commit comments

Comments
 (0)