mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-22 21:01:40 +03:00
13 lines
269 B
Bash
Executable File
13 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} "$@"
|