Skip to content

Commit

Permalink
Not found exception for public assets
Browse files Browse the repository at this point in the history
sbt#28
replace flat path by absolute path
  • Loading branch information
crakjie authored Dec 19, 2018
1 parent f10b4ce commit b5ea6ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/net/ground5hark/sbt/concat/SbtConcat.scala
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ object SbtConcat extends AutoPlugin {
fileNames match {
case Left(fileNamesSeq) => (groupName, fileNamesSeq)
case Right(fileNamesPathFinder) =>
val r = fileNamesPathFinder.pair(Path.relativeTo(srcDirs ++ webModuleDirs) | Path.flat)
val r = fileNamesPathFinder.pair(Path.relativeTo(srcDirs ++ webModuleDirs) | Path.abs)
(groupName, r.map(_._2))
case u => sys.error(s"Expected Seq[String] or PathFinder, but got $u")
}
Expand Down

0 comments on commit b5ea6ef

Please sign in to comment.