feat(infra): improve build script error handling

This commit is contained in:
Nicola Zangrandi 2025-02-21 08:46:56 +01:00
parent 360568b96f
commit e7b7c8895a
Signed by: wasp
GPG key ID: 43C1470D890F23ED

View file

@ -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."