sbt.cmd -> sbt.bat

This commit is contained in:
Eugene Yokota 2020-09-20 21:31:55 -04:00
parent 870be12f41
commit 6ebbbe5e0a
1 changed files with 1 additions and 1 deletions

View File

@ -980,7 +980,7 @@ object NetworkClient {
private[client] val noStdErr = "--no-stderr"
private[client] val sbtBase = "--sbt-base-directory"
private[client] def parseArgs(args: Array[String]): Arguments = {
var sbtScript = if (Properties.isWin) "sbt.cmd" else "sbt"
var sbtScript = if (Properties.isWin) "sbt.bat" else "sbt"
val commandArgs = new mutable.ArrayBuffer[String]
val sbtArguments = new mutable.ArrayBuffer[String]
val completionArguments = new mutable.ArrayBuffer[String]