mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
Build: Fix shellcheck warnings in makeall.sh
"SC2115: Declare and assign separately to avoid masking return values."
This commit is contained in:
parent
ef6eb07468
commit
26c9c27407
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue