From 26c9c27407eb9c975396d9596a845cbd5f4f73fe Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Tue, 24 Dec 2019 13:26:40 +1300 Subject: Build: Fix shellcheck warnings in makeall.sh "SC2115: Declare and assign separately to avoid masking return values." --- Kernel/makeall.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index 26b44c8891..e529255504 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -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 -- cgit v1.2.3