mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 19:45:12 +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
Notes:
sideshowbarker
2024-07-19 10:43:59 +09:00
Author: https://github.com/shannonbooth Commit: https://github.com/SerenityOS/serenity/commit/26c9c27407e Pull-request: https://github.com/SerenityOS/serenity/pull/905
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