mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-02-16 21:38:39 +00:00
12 lines
269 B
Bash
Executable file
12 lines
269 B
Bash
Executable file
#!/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} "$@"
|