From b130925c5f1e893d3a00bbe5799e82a48a34e981 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 18 Nov 2025 17:00:15 +0500 Subject: [PATCH] build-deps - fix missing `cd` before trying to extract boost archive Not sure when it was introduced, but it was still using previous dependency path and leading to confusing error: ``` Boost 1.86.0 already downloaded. Skipping. Extracting Boost 1.86.0 into L:\Projects\Github\IfcOpenShell\_deps from boost-1.86.0-b2-nodocs.7z An error occurred ``` --- win/build-deps.cmd | 1 + 1 file changed, 1 insertion(+) diff --git a/win/build-deps.cmd b/win/build-deps.cmd index dd9af78115..c707c82780 100644 --- a/win/build-deps.cmd +++ b/win/build-deps.cmd @@ -394,6 +394,7 @@ set BOOST_LIBRARYDIR=%DEPENDENCY_DIR%\stage\%GEN_SHORTHAND%\lib set ZIP_EXT=7z set BOOST_ZIP=boost-%BOOST_VERSION%-b2-nodocs.%ZIP_EXT% +cd "%DEPS_DIR%" call :DownloadFile https://github.com/boostorg/boost/releases/download/boost-%BOOST_VERSION%/%BOOST_ZIP% "%DEPS_DIR%" %BOOST_ZIP% IF NOT %ERRORLEVEL%==0 GOTO :Error