File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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:
You can’t perform that action at this time.
0 commit comments