Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Apr 8, 2018
2 parents 5b598b7 + cc04076 commit f0e7dce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ matrix:
jdk: oraclejdk8

script:
- curl -L -o ~/bin/mill https://github.com/lihaoyi/mill/releases/download/0.1.7/0.1.7-52-9c0564 && chmod +x ~/bin/mill
- curl -L -o ~/bin/mill https://github.com/lihaoyi/mill/releases/download/0.1.7/0.1.7-53-cc0407 && chmod +x ~/bin/mill
- export PATH=~/bin/mill:$PATH
- "$CI_SCRIPT"

Expand Down
5 changes: 4 additions & 1 deletion scalalib/src/mill/scalalib/JavaModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,10 @@ trait JavaModule extends mill.Module with TaskModule { outer =>
) ++ options ++
Seq(
"-classpath",
compileClasspath().map(_.path).filter(_.ext != "pom").mkString(java.io.File.pathSeparator)
compileClasspath()
.map(_.path)
.filter(_.ext != "pom")
.mkString(java.io.File.pathSeparator)
) ++
files.map(_.toString),
envArgs = Map(),
Expand Down

0 comments on commit f0e7dce

Please sign in to comment.