Make robocopy output silent in sbt.bat to match bash bootstrap copy output

This commit is contained in:
Eric Peters 2020-06-19 08:07:48 -07:00
parent 5e5e3c1929
commit 4e5e3fbb29
1 changed files with 1 additions and 1 deletions

View File

@ -819,7 +819,7 @@ if /I !JAVA_VERSION! GEQ 8 (
if %ERRORLEVEL% EQU 0 (
if not exist !PRELOAD_SBT_JAR! (
if exist "!SBT_HOME!\lib\local-preloaded\" (
robocopy "!SBT_HOME!\lib\local-preloaded" "%UserProfile%\.sbt\preloaded" /E
robocopy "!SBT_HOME!\lib\local-preloaded" "%UserProfile%\.sbt\preloaded" /E >nul 2>nul
)
)
)