Rework after review prepare-host.sh

Use all parameters to display_alert()
```
[🐳|🌱] Running in container [ Adding provisions for container building ]
[🐳|🌱] Adding package to 'host_dependencies' [ python3-setuptools ]
[🐳|🌱] Python2 not available on host release 'noble' [ ancient u-boot versions might/will fail to build ]
```
This commit is contained in:
djurny 2025-05-31 22:08:17 -07:00 committed by Igor
parent 826309f7bc
commit 0f4303651f

View File

@ -230,7 +230,7 @@ function adaptative_prepare_host_dependencies() {
# Some versions of U-Boot do not require/import 'python3-setuptools' properly, so add them explicitly.
if [[ 'tag:v2022.04' == "${BOOTBRANCH:-}" || 'tag:v2022.07' == "${BOOTBRANCH:-}" ]]; then
display_alert "Adding 'python3-setuptools' to host_dependencies"
display_alert "Adding package to 'host_dependencies'" "python3-setuptools" "info"
host_dependencies+=("python3-setuptools")
fi