From 676fcea493e71bd2da7c9380342566f7cdb5a643 Mon Sep 17 00:00:00 2001 From: "XPS\\Micro" Date: Sat, 31 Jan 2026 12:49:31 +0100 Subject: [PATCH] fix: correct indentation in spawner-api error handling - Fixed indentation mismatch in error handling block - Consistent with other build error blocks --- install.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/install.sh b/install.sh index a1e9f0d..8ecfcc8 100644 --- a/install.sh +++ b/install.sh @@ -448,13 +448,13 @@ if [ $BUILD_EXIT -eq 0 ] && docker image inspect spawner:latest >/dev/null 2>&1; echo "" echo -e " spawner-api: ${GREEN}OK${NC}" else - echo "" - echo -e " spawner-api: ${RED}FEHLER${NC}" - echo " Siehe Build-Log: ${LOG_FILE}" - echo " Letzte 50 Zeilen:" - tail -50 "${BUILD_LOG}" - exit 1 - fi + echo "" + echo -e " spawner-api: ${RED}FEHLER${NC}" + echo " Siehe Build-Log: ${LOG_FILE}" + echo " Letzte 50 Zeilen:" + tail -50 "${BUILD_LOG}" + exit 1 +fi # Frontend Image bauen if [ -d "${INSTALL_DIR}/frontend" ]; then