mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 04:34:43 +04:00
13 lines
269 B
Plaintext
13 lines
269 B
Plaintext
|
|
#!/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} "$@"
|