mirror of https://github.com/sbt/sbt.git
Merge pull request #1557 from gkossakowski/scripted-compactify
Fix `compactify` scripted test failure.
This commit is contained in:
commit
68602278d5
|
|
@ -2,3 +2,8 @@ TaskKey[Unit]("output-empty") <<= classDirectory in Configurations.Compile map {
|
|||
def classes = (outputDirectory ** "*.class").get
|
||||
if(!classes.isEmpty) error("Classes existed:\n\t" + classes.mkString("\n\t")) else ()
|
||||
}
|
||||
|
||||
// apparently Travis CI stopped allowing long file names
|
||||
// it fails with the default setting of 255 characters so
|
||||
// we have to set lower limit ourselves
|
||||
scalacOptions ++= Seq("-Xmax-classfile-name", "240")
|
||||
|
|
|
|||
Loading…
Reference in New Issue