2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-12 21:31:43 +00:00

fix: being able to generate solution without git submodules on windows

This commit is contained in:
Jan Laupetin
2026-05-05 22:07:11 +01:00
parent 1df727af06
commit c1a1d2739d
+8
View File
@@ -50,6 +50,14 @@ cd %~dp0
:start
IF NOT EXIST ".git" (
git rev-parse --is-inside-work-tree >NUL 2>&1
IF ERRORLEVEL 1 (
echo You must clone the repository using 'git clone'. Please read README.md.
exit 1
)
)
IF "%PREMAKE_NO_GLOBAL%" EQU "" (
where /Q "premake5.exe"
IF NOT ERRORLEVEL 1 (