Add a missing string interp

Fixes sbt/sbt#3637
This commit is contained in:
Dale Wijnand 2017-10-13 15:00:38 +01:00 committed by GitHub
parent 293666f653
commit 340b4ab9ec
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)