From 259367db37228fd6bbeae5f36ea117785ca739ae Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Tue, 4 Jun 2024 07:36:02 -0600 Subject: [PATCH] make.bat: update location of addons folder The addons folder no longer exists, the addons_core folder must be checked now instead when displaying the hashes. --- build_files/windows/show_hashes.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/windows/show_hashes.cmd b/build_files/windows/show_hashes.cmd index 04a234b8207..2234348a65a 100644 --- a/build_files/windows/show_hashes.cmd +++ b/build_files/windows/show_hashes.cmd @@ -5,7 +5,7 @@ if "%GIT%" == "" ( cd "%BLENDER_DIR%" for /f "delims=" %%i in ('"%GIT%" rev-parse --abbrev-ref HEAD') do echo Branch_name=%%i for /f "delims=" %%i in ('"%GIT%" rev-parse HEAD') do echo Branch_hash=%%i -cd "%BLENDER_DIR%/scripts/addons" +cd "%BLENDER_DIR%/scripts/addons_core" for /f "delims=" %%i in ('"%GIT%" rev-parse --abbrev-ref HEAD') do echo Addons_Branch_name=%%i for /f "delims=" %%i in ('"%GIT%" rev-parse HEAD') do echo Addons_Branch_hash=%%i