mirror of https://github.com/PCSX2/pcsx2.git
Fix git version detection
- It currently fails to detect a 64bit git. - It currently breaks with a TZ left of the Greenwich meridian. - The output of git show -s can cause compilation errors pipe to NUL. - Pipe the two can't find the git command error messages to NUL too.
This commit is contained in:
parent
0a7eed686c
commit
49072d6e02
|
@ -13,23 +13,20 @@
|
||||||
|
|
||||||
SETLOCAL ENABLEEXTENSIONS
|
SETLOCAL ENABLEEXTENSIONS
|
||||||
|
|
||||||
set mydir=%~dp0
|
IF EXIST "%ProgramFiles(x86)%\Git\bin\git.exe" SET "GITPATH=%ProgramFiles(x86)%\Git\bin"
|
||||||
|
IF EXIST "%ProgramFiles%\Git\bin\git.exe" SET "GITPATH=%ProgramFiles%\Git\bin"
|
||||||
|
IF EXIST "%ProgramW6432%\Git\bin\git.exe" SET "GITPATH=%ProgramW6432%\Git\bin"
|
||||||
|
IF DEFINED GITPATH SET "PATH=%PATH%;%GITPATH%"
|
||||||
|
|
||||||
IF "%PROGRAMFILES(x86)%" == "" do (
|
FOR /F "tokens=1-2" %%i IN ('"git show -s --format=%%%ci HEAD 2> NUL"') do (
|
||||||
set PROGRAMFILES(x86)=%PROGRAMFILES%
|
set REV3=%%i%%j
|
||||||
)
|
|
||||||
|
|
||||||
set PATH=%PATH%;"%PROGRAMFILES(x86)%\Git\bin"
|
|
||||||
|
|
||||||
FOR /F "delims=+" %%i IN ('"git show -s --format=%%%ci HEAD"') do (
|
|
||||||
set REV3=%%i
|
|
||||||
)
|
)
|
||||||
|
|
||||||
set REV2=%REV3: =%
|
set REV2=%REV3: =%
|
||||||
set REV1=%REV2:-=%
|
set REV1=%REV2:-=%
|
||||||
set REV=%REV1::=%
|
set REV=%REV1::=%
|
||||||
|
|
||||||
git show -s
|
git show -s > NUL 2>&1
|
||||||
if %ERRORLEVEL% NEQ 0 (
|
if %ERRORLEVEL% NEQ 0 (
|
||||||
echo Automatic version detection unavailable.
|
echo Automatic version detection unavailable.
|
||||||
echo If you want to have the version string print correctly,
|
echo If you want to have the version string print correctly,
|
||||||
|
|
Loading…
Reference in New Issue