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:
11
11
image : lampepfl/dotty:24-04-2017
12
12
pull : true
13
13
commands :
14
- - ln -s /var/cache/drone/scala-scala scala-scala
15
14
- ln -s /var/cache/drone/ivy2 "$HOME/.ivy2"
16
15
- sbt -J-Xmx4096m -J-XX:ReservedCodeCacheSize=512m -J-XX:MaxMetaspaceSize=1024m -Ddotty.drone.mem=4096m "${CI_TEST}"
17
16
when :
Original file line number Diff line number Diff line change @@ -902,7 +902,7 @@ object DottyInjectedPlugin extends AutoPlugin {
902
902
903
903
private def projectChecks (): Unit = {
904
904
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 )) {
906
906
println(
907
907
s """ [WARNING] Missing some of the submodules
908
908
|You can initialize the modules with:
You can’t perform that action at this time.
0 commit comments