Skip to content

Commit

Permalink
fix missing interpolator in project/JarJar.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k authored Nov 23, 2017
1 parent 7c8e4ac commit 97c93c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/JarJar.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ object JarJar {
val excluded = excludes.map { name =>
val f: File = outdir / name
if(f.exists && !f.delete())
throw new IOException("Failed to delete excluded file $f")
throw new IOException(s"Failed to delete excluded file $f")
f
}
(processed -- excluded).toSeq
Expand Down

0 comments on commit 97c93c1

Please sign in to comment.