Fix shellcheck complains due to new version
Shellcheck v0.7.2[1] added more checks resulting in the following
complains in our case:
In build-host.sh line 12:
readonly TMPDIR="$(mktemp --dry-run --directory --tmpdir="${PWD}/tmp")"
^----^ SC2155: Declare and assign separately to avoid masking return values.
In build-inside-vm.sh line 16:
readonly TMPDIR="$(mktemp --dry-run --directory --tmpdir="${PWD}/tmp")"
^----^ SC2155: Declare and assign separately to avoid masking return values.
In build-inside-vm.sh line 19:
chown "${SUDO_UID}:${SUDO_GID}" "${OUTPUT}" "${TMPDIR}"
^---------^ SC2153: Possible misspelling: SUDO_GID may not be assigned, but SUDO_UID is.
[1] https://github.com/koalaman/shellcheck/blob/331e89be990547b6e21ad1b6e56065bcda1ba053/CHANGELOG.md#v072---2021-04-19
Edited by Kristian Klausen