mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 01:09:25 +00:00
Build: Fix shellcheck warnings in makeall.sh
"SC2115: Declare and assign separately to avoid masking return values."
This commit is contained in:
committed by
Andreas Kling
parent
ef6eb07468
commit
26c9c27407
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user