mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
8 lines
204 B
Batchfile
8 lines
204 B
Batchfile
@echo off
|
|
if exist ".git" (
|
|
echo Prepairing git submodules
|
|
git submodule update --init
|
|
)
|
|
|
|
set "SCONS_DEFAULT_FLAGS=-Q --warn=target-not-built"
|
|
python lib/scons/scripts/scons.py %SCONS_DEFAULT_FLAGS% %*
|