2018-05-25 17:57:13 -06:00
|
|
|
if "%GIT%" == "" (
|
|
|
|
|
echo Git not found, cannot show hashes.
|
|
|
|
|
goto EOF
|
|
|
|
|
)
|
|
|
|
|
cd "%BLENDER_DIR%"
|
2018-06-16 12:29:38 -06:00
|
|
|
for /f "delims=" %%i in ('"%GIT%" rev-parse HEAD') do echo Branch_hash=%%i
|
2018-05-25 17:57:13 -06:00
|
|
|
cd "%BLENDER_DIR%/release/datafiles/locale"
|
2018-06-16 12:29:38 -06:00
|
|
|
for /f "delims=" %%i in ('"%GIT%" rev-parse HEAD') do echo Locale_hash=%%i
|
2018-05-25 17:57:13 -06:00
|
|
|
cd "%BLENDER_DIR%/release/scripts/addons"
|
2018-06-16 12:29:38 -06:00
|
|
|
for /f "delims=" %%i in ('"%GIT%" rev-parse HEAD') do echo Addons_Hash=%%i
|
2018-05-25 17:57:13 -06:00
|
|
|
cd "%BLENDER_DIR%"
|
|
|
|
|
:EOF
|