Merge pull request #337 from eatkins/windows-fixes

Miscellaneous fixes to windows batch script
This commit is contained in:
eugene yokota 2020-10-25 21:29:58 -04:00 committed by GitHub
commit 1b88d41f83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -644,11 +644,13 @@ set "_SBTNCMD=!SBT_BIN_DIR!sbtn-x86_64-pc-win32.exe"
if defined sbt_args_verbose (
echo # running native client
if not "%~1" == "" ( call :echolist %* )
set "SBT_ARGS=-v !SBT_ARGS!"
)
set "SBT_ARGS=--sbt-script=!SBT_BIN_DIR!sbt.bat %SBT_ARGS%"
rem Microsoft Visual C++ 2010 SP1 Redistributable Package (x64) is required
rem https://www.microsoft.com/en-us/download/details.aspx?id=13523
"!_SBTNCMD!" %*
"!_SBTNCMD!" %SBT_ARGS%
goto :eof