From e7b7c8895a5ad655b2b4e05348e1018ad45a91f8 Mon Sep 17 00:00:00 2001 From: Nicola Zangrandi Date: Fri, 21 Feb 2025 08:46:56 +0100 Subject: [PATCH] feat(infra): improve build script error handling --- build.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index aca5c3e..5d4b022 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -e +set -euo pipefail # Find bun executable if command -v bun >/dev/null 2>&1; then @@ -25,4 +25,9 @@ cp static/css/bulma.min.css build/css/ # Build backend (without CGO) popd -CGO_ENABLED=0 $GO_CMD build -o notes-app +echo "Building Go backend..." +CGO_ENABLED=0 $GO_CMD build -v -o notes-app || { + echo "Go build failed!" + exit 1 +} +echo "Go build completed successfully."