Merge pull request #174 from sbt/string-interp

Add a missing string interp
This commit is contained in:
eugene yokota 2017-10-13 21:11:28 -04:00 committed by GitHub
commit 91b56c50db
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ private[sbt] object ConvertResolver {
val overwriteWarning =
if (destination contains "-SNAPSHOT") s"Attempting to overwrite $destination"
else
"Attempting to overwrite $destination (non-SNAPSHOT)\n\tYou need to remove it from the cache manually to take effect."
s"Attempting to overwrite $destination (non-SNAPSHOT)\n\tYou need to remove it from the cache manually to take effect."
import org.apache.ivy.util.Message
Message.warn(overwriteWarning)
super.put(source, destination, true)