fbt: added support for FBT_NO_SYNC environment variable to skip submodule update at start (#1363)

This commit is contained in:
hedger
2022-07-04 20:38:18 +03:00
committed by GitHub
parent 6b6ea44802
commit 43fd2e4433
5 changed files with 18 additions and 225 deletions

View File

@@ -2,8 +2,13 @@
set SCONS_EP=%~dp0\lib\scons\scripts\scons.py
if exist ".git" (
git submodule update --init
if [%FBT_NO_SYNC%] == [] (
if exist ".git" (
git submodule update --init
) else (
echo Not in a git repo, please clone with git clone --recursive
exit /b 1
)
)
set "SCONS_DEFAULT_FLAGS=-Q --warn=target-not-built"