mirror of https://github.com/sbt/sbt.git
clarify message on sbt.version mismatch
This commit is contained in:
parent
e4131814e7
commit
2f4b6f476a
|
|
@ -827,8 +827,8 @@ object BuiltinCommands {
|
||||||
sbtVersionOpt.foreach(
|
sbtVersionOpt.foreach(
|
||||||
version =>
|
version =>
|
||||||
if (version != app.id.version()) {
|
if (version != app.id.version()) {
|
||||||
state.log.warn(s"""sbt version mismatch, current: ${app.id
|
state.log.warn(s"""sbt version mismatch, using: ${app.id
|
||||||
.version()}, in build.properties: "$version", use 'reboot' to use the new value.""")
|
.version()}, in build.properties: "$version".""")
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,6 @@ TaskKey[Unit]("checkSbtVersionWarning") := {
|
||||||
val logging = state.globalLogging
|
val logging = state.globalLogging
|
||||||
val currVersion = state.configuration.provider.id.version()
|
val currVersion = state.configuration.provider.id.version()
|
||||||
val contents = IO.read(logging.backing.file)
|
val contents = IO.read(logging.backing.file)
|
||||||
assert(contents.contains(s"""sbt version mismatch, current: $currVersion, in build.properties: "1.1.1", use 'reboot' to use the new value."""))
|
assert(contents.contains(s"""sbt version mismatch, using: $currVersion, in build.properties: "1.1.1"."""))
|
||||||
()
|
()
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue