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
if which realpath > /dev/null; then
export GLUON_SITEDIR="$(dirname "$(realpath "$0")")"
GLUON_SITEDIR="$(dirname "$(realpath "$0")")"
else
export GLUON_SITEDIR="$(dirname "$(readlink -f "$0")")"
GLUON_SITEDIR="$(dirname "$(readlink -f "$0")")"
fi
export GLUON_SITEDIR
GLUON_DIR="${GLUON_SITEDIR}/gluon/"
# start building
@ -27,7 +28,7 @@ fi
for target in $GLUON_TARGETS; do
echo "Building target ${target}"
schedtool -B -e \
make --jobs=$JOBS --output-sync=recurse \
make --jobs="$JOBS" --output-sync=recurse \
GLUON_TARGET="$target" V=s
done
@ -44,7 +45,7 @@ if [ -z "${GLUON_BRANCH:-}" ]; then
fi
# 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}/output/images/sysupgrade/testing.manifest"
fi