aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/ci/travis/main.sh
blob: ed6f56063aee5587d3a50f50893a783b28f1d1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
set -ev
which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available

PARENT_DIR=$(dirname "$0")

if [ "$BUILD_MODE" = "lint" ]; then
    "$PARENT_DIR"/lint.sh
else
    "$PARENT_DIR"/build.sh
fi