mirror of https://github.com/sbt/sbt.git
Merge pull request #325 from er1c/robocopy-silent
Make robocopy output silent in sbt.bat to match bash bootstrap copy output
This commit is contained in:
commit
7d75936b02
|
|
@ -1,6 +1,8 @@
|
|||
/SbtTemplateProject.scala
|
||||
target
|
||||
/project/boot
|
||||
/project/metals.sbt
|
||||
/.metals
|
||||
/project/plugins
|
||||
lib_managed
|
||||
src_managed
|
||||
|
|
|
|||
|
|
@ -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
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue