fbt 269 B

123456789101112
  1. #!/bin/bash
  2. set -e
  3. if [[ -d .git ]]; then
  4. echo "Updating git submodules"
  5. git submodule update --init
  6. fi
  7. SCRIPTDIR="$( dirname -- "$0"; )";
  8. SCONS_DEFAULT_FLAGS="-Q --warn=target-not-built"
  9. python3 ${SCRIPTDIR}/lib/scons/scripts/scons.py ${SCONS_DEFAULT_FLAGS} "$@"