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.
This commit is contained in:
Ray Molenkamp
2024-06-04 07:36:02 -06:00
parent 78c1c1a170
commit 259367db37

View File

@@ -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