From ced066e0c8dbf06ee4efd3180bd6fb21f4215b4f Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Thu, 22 Feb 2024 13:09:34 -0700 Subject: [PATCH] make.bat: add additional messaging for the libs download git on windows is giving no status updates while git lfs is downloading the libs, causing people to assume its stuck and interrupt the download. This change adds a rather large visual message telling people not to do that. also it was not respecting people selecting n on the lib download so some extra messaging has been added there as well. --- build_files/windows/check_libraries.cmd | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/build_files/windows/check_libraries.cmd b/build_files/windows/check_libraries.cmd index 5c29f0fe6e9..68e36c6cd55 100644 --- a/build_files/windows/check_libraries.cmd +++ b/build_files/windows/check_libraries.cmd @@ -14,6 +14,16 @@ if NOT EXIST "%BUILD_VS_LIBDIR%\.git" ( echo. echo Downloading %BUILD_VS_LIBDIR% libraries, please wait. echo. + echo ********************************************************* + echo * * + echo * Note: Once the initial download finishes and you see * + echo * "Resolving deltas: 100%% (nnn/nnn) done" * + echo * a second, much larger, update will occur with * + echo * no visible updates. Please do not interrupt * + echo * this process. It may take over an hour to * + echo * complete depending on your internet connection. * + echo * * + echo ********************************************************* :RETRY "%GIT%" -C "%BLENDER_DIR%\" config --local "submodule.%BUILD_VS_LIBDIR%.update" "checkout" "%GIT%" -C "%BLENDER_DIR%\" submodule update --progress --init "%BUILD_VS_LIBDIR%" @@ -28,7 +38,10 @@ if NOT EXIST "%BUILD_VS_LIBDIR%\.git" ( echo. exit /b 1 ) - ) + ) else ( + echo Not downloading libraries, until this is resolved you CANNOT make a successful blender build. + exit /b 1 + ) ) ) else ( if NOT EXIST %PYTHON% (