From 247c299f41ee6285056047fb6b6d3e24ae06349c Mon Sep 17 00:00:00 2001 From: OPPEN321 Date: Thu, 6 Nov 2025 11:25:15 +0800 Subject: [PATCH] Update build.sh --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index cfe2216..7b63391 100644 --- a/build.sh +++ b/build.sh @@ -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