Merge pull request #200 from sbt/bat-no-quotes

Drop quotes in bat script
This commit is contained in:
eugene yokota 2017-12-13 18:56:52 -05:00 committed by GitHub
commit 4188199965
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ val root = (project in file(".")).
val x = IO.read(k)
IO.write(t / "sbt.bat", x.replaceAllLiterally(
"set INIT_SBT_VERSION=_TO_BE_REPLACED",
s"""set INIT_SBT_VERSION="$sbtVersionToRelease""""))
s"""set INIT_SBT_VERSION=$sbtVersionToRelease"""))
(t / "sbt.bat", BinBat)
case (k, v) => (k, v)
}