build.sh: Comply with shellcheck

This commit is contained in:
Jan-Philipp Litza 2019-12-16 21:39:08 +01:00
parent 8e7998e271
commit ecb602c0bc
No known key found for this signature in database
GPG Key ID: 1FB658053CE27196
1 changed files with 5 additions and 4 deletions

View File

@ -10,10 +10,11 @@ set -eu
# determine absolute path of site repository # determine absolute path of site repository
if which realpath > /dev/null; then if which realpath > /dev/null; then
export GLUON_SITEDIR="$(dirname "$(realpath "$0")")" GLUON_SITEDIR="$(dirname "$(realpath "$0")")"
else else
export GLUON_SITEDIR="$(dirname "$(readlink -f "$0")")" GLUON_SITEDIR="$(dirname "$(readlink -f "$0")")"
fi fi
export GLUON_SITEDIR
GLUON_DIR="${GLUON_SITEDIR}/gluon/" GLUON_DIR="${GLUON_SITEDIR}/gluon/"
# start building # start building
@ -27,7 +28,7 @@ fi
for target in $GLUON_TARGETS; do for target in $GLUON_TARGETS; do
echo "Building target ${target}" echo "Building target ${target}"
schedtool -B -e \ schedtool -B -e \
make --jobs=$JOBS --output-sync=recurse \ make --jobs="$JOBS" --output-sync=recurse \
GLUON_TARGET="$target" V=s GLUON_TARGET="$target" V=s
done done
@ -44,7 +45,7 @@ if [ -z "${GLUON_BRANCH:-}" ]; then
fi fi
# sign testing/nightly manifest if key is present # sign testing/nightly manifest if key is present
if [ -n "$KEYFILE" -a -r "$KEYFILE" ]; then if [ -n "$KEYFILE" ] && [ -r "$KEYFILE" ]; then
"${GLUON_DIR}/contrib/sign.sh" "$KEYFILE" \ "${GLUON_DIR}/contrib/sign.sh" "$KEYFILE" \
"${GLUON_DIR}/output/images/sysupgrade/testing.manifest" "${GLUON_DIR}/output/images/sysupgrade/testing.manifest"
fi fi