Update build.sh

This commit is contained in:
2025-11-06 11:25:15 +08:00
committed by GitHub
parent a0a8b042de
commit 247c299f41

View File

@@ -354,7 +354,7 @@ prepare_source_code() {
executed_count=0
for script in "${build_scripts[@]}"; do
echo -ne " ${BOLD}${MAGENTA_COLOR}│ ⚡ ${CYAN_COLOR}$script${RESET}"
if bash "$script" 2>/dev/null; then
if bash "$script" >/dev/null 2>&1; then
echo -e " ${GREEN_COLOR}${RESET}"
executed_count=$((executed_count + 1))
else