Updated install_gtest.bat

The g_test.bat was checking against a string instead of the Variable
leading to a error when gtest was already installed and the bat was run
This commit is contained in:
setnr 2024-10-08 16:37:43 +02:00 committed by Blyron
parent 0ce3559162
commit 1c559660e0
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ if %errorlevel% neq 0 goto error_cmake
echo %FILE_N% Building...
cmake --build . --config Release --target install
if errorlevel neq 0 goto error_install
if %errorlevel% neq 0 goto error_install
rem Remove the downloaded Google Test source because is no more needed
if %DEL_SRC% == true (