We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 204afde commit 43d8a92Copy full SHA for 43d8a92
1 file changed
builder/Makefile
@@ -9,7 +9,7 @@ BINARY_DEST_DIR := image/bin
9
10
build: check-docker
11
for i in $(BINARIES); do \
12
- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -v -ldflags '-s' -o $(BINARY_DEST_DIR)/$$i bin/$$i.go ; \
+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -v -ldflags '-s' -o $(BINARY_DEST_DIR)/$$i bin/$$i.go || exit 1; \
13
done
14
docker build -t $(IMAGE) image
15
0 commit comments