mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 06:54:19 +00:00
24 lines
No EOL
724 B
Bash
Executable file
24 lines
No EOL
724 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# shellcheck disable=SC2086 source=/dev/null
|
|
# unofficial strict mode
|
|
set -eu;
|
|
|
|
SCONS_DEFAULT_FLAGS="-Q --warn=target-not-built";
|
|
SCRIPT_PATH="$(cd "$(dirname "$0")" && pwd -P)";
|
|
|
|
if [ -z "${FBT_NOENV:-}" ]; then
|
|
echo "info: FBT_NOENV is not set, using included toolchain env";
|
|
. "$SCRIPT_PATH/scripts/toolchain/fbtenv.sh";
|
|
fi
|
|
|
|
if [ -z "${FBT_NO_SYNC:-}" ]; then
|
|
echo "info: FBT_NO_SYNC is not set, running git submodule update";
|
|
if [ ! -d "$SCRIPT_PATH/.git" ]; then
|
|
echo "\".git\" directory not found, please clone repo via \"git clone --recursive\"";
|
|
exit 1;
|
|
fi
|
|
git submodule update --init;
|
|
fi
|
|
|
|
python3 "$SCRIPT_PATH/lib/scons/scripts/scons.py" $SCONS_DEFAULT_FLAGS "$@" |