Fix default-value bug in build.sh

This commit is contained in:
Tim Hockin 2024-06-21 09:54:58 -07:00
parent 54491b2011
commit 1b5c314d00
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ export CGO_ENABLED=0
export GOARCH="${ARCH}"
export GOOS="${OS}"
if [ "${BUILD_DEBUG:-}" -eq 1 ]; then
if [ "${BUILD_DEBUG:-0}" -eq 1 ]; then
# Debugging - disable optimizations and inlining
gogcflags="all=-N -l"
goasmflags=""