mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
Ports/build_all: Read port directory names into an array immediately
The script previously failed early after building `mandoc`, as it failed to switch to the correct directory for the next port. With this change, the script now runs to completion.
This commit is contained in:
parent
b13fe9397d
commit
81d9a6f44a
Notes:
sideshowbarker
2024-07-17 22:01:16 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/81d9a6f44a Pull-request: https://github.com/SerenityOS/serenity/pull/20673 Reviewed-by: https://github.com/gmta Reviewed-by: https://github.com/timschumi ✅
1 changed files with 3 additions and 2 deletions
|
@ -61,7 +61,8 @@ do_clean_port() {
|
|||
}
|
||||
|
||||
ports_dir=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
||||
while IFS= read -r -d '' port_dir; do
|
||||
mapfile -d '' directories < <(find "$ports_dir" -mindepth 1 -maxdepth 1 -type d -print0 | sort -z)
|
||||
for port_dir in "${directories[@]}"; do
|
||||
port_name="$(basename "$port_dir")"
|
||||
if [[ " ${processed_ports[*]} " == *" $port_name "* ]]; then
|
||||
log_info "$port_name is already processed"
|
||||
|
@ -105,7 +106,7 @@ while IFS= read -r -d '' port_dir; do
|
|||
|
||||
# shellcheck disable=SC2207
|
||||
processed_ports+=("$port_name" $(./package.sh showproperty depends))
|
||||
done < <(find "$ports_dir" -mindepth 1 -maxdepth 1 -type d -print0 | sort -z)
|
||||
done
|
||||
|
||||
if $some_failed; then
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue