mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:47:35 +00: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"
|
cd "$script_path"
|
||||||
|
|
||||||
# Get user and group details for setting qemu disk image ownership
|
# Get user and group details for setting qemu disk image ownership
|
||||||
export build_user=$(id -u)
|
build_user=$(id -u)
|
||||||
export build_group=$(id -g)
|
build_group=$(id -g)
|
||||||
|
export build_user
|
||||||
|
export build_group
|
||||||
|
|
||||||
sudo id
|
sudo id
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue