Skip to content

Commit 979a397

Browse files
bzozBethGriggs
authored andcommitted
win, build: fix building addons on Windows
Building addons would fail because addon-verify.js dependencies from tools\doc where not installed. This fixes this issue by installing those dependencies if addons are to be built. Fixes: #25096 PR-URL: #25108 Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 0c5972f commit 979a397

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vcbuild.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,8 @@ if errorlevel 1 goto exit
449449

450450

451451
:install-doctools
452-
REM only install if building doc OR testing doctool
453-
if not defined doc (
452+
REM only install if building doc OR testing doctool OR building addons
453+
if not defined doc if not defined build_addons (
454454
echo.%test_args% | findstr doctool 1>nul
455455
if errorlevel 1 goto :skip-install-doctools
456456
)

0 commit comments

Comments
 (0)