The codebase that powers boop.cat boop.cat

show invalid build command error to user

Changed files
+3
backend-go
deploy
+3
backend-go/deploy/build.go
··· 174 174 175 175 if customCommand != "" { 176 176 if err := validateBuildCommand(customCommand); err != nil { 177 + if b.Logger != nil { 178 + b.Logger(fmt.Sprintf("Invalid build command: %v\n", err)) 179 + } 177 180 return "", fmt.Errorf("invalid build command: %w", err) 178 181 } 179 182 if b.Logger != nil {