mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-26 06:20:21 +00:00
13 lines
269 B
Text
13 lines
269 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [[ -d .git ]]; then
|
||
|
echo "Updating git submodules"
|
||
|
git submodule update --init
|
||
|
fi
|
||
|
|
||
|
SCRIPTDIR="$( dirname -- "$0"; )";
|
||
|
SCONS_DEFAULT_FLAGS="-Q --warn=target-not-built"
|
||
|
python3 ${SCRIPTDIR}/lib/scons/scripts/scons.py ${SCONS_DEFAULT_FLAGS} "$@"
|