feat(infra): improve build script error handling
This commit is contained in:
parent
360568b96f
commit
e7b7c8895a
1 changed files with 7 additions and 2 deletions
9
build.sh
9
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."
|
||||
|
|
Loading…
Add table
Reference in a new issue