Build: Fix shellcheck warnings in makeall.sh

"SC2115: Declare and assign separately to avoid masking return values."
This commit is contained in:
Shannon Booth 2019-12-24 13:26:40 +13:00 committed by Andreas Kling
parent ef6eb07468
commit 26c9c27407
Notes: sideshowbarker 2024-07-19 10:43:59 +09:00

View File

@ -5,8 +5,10 @@ script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
cd "$script_path"
# Get user and group details for setting qemu disk image ownership
export build_user=$(id -u)
export build_group=$(id -g)
build_user=$(id -u)
build_group=$(id -g)
export build_user
export build_group
sudo id