fix mixed compilation order

This commit is contained in:
Mark Harrah 2011-05-07 22:02:05 -04:00
parent aae8b084ca
commit 7ad8e9778f
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class AggressiveCompile(cacheDirectory: File)
javac(javaSrcs, absClasspath, outputDirectory, options.javacOptions)
}
}
if(order == ScalaThenJava) { compileScala(); compileJava() } else { compileJava(); compileScala() }
if(order == JavaThenScala) { compileJava(); compileScala() } else { compileScala(); compileJava() }
}
val sourcesSet = sources.toSet