Skip to content

Commit d3733cb

Browse files
arschlesAaron Schlesinger
authored andcommitted
fix(Makefile): change binary artifact from builder to boot
Fixes #37
1 parent 430db69 commit d3733cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bootstrap:
4040
# the Docker environment. Other alternatives are cross-compiling, doing
4141
# the build as a `docker build`.
4242
build:
43-
${DEV_ENV_PREFIX} -e CGO_ENABLED=0 ${DEV_ENV_IMAGE} go build -a -installsuffix cgo -ldflags '-s' -o $(BINARY_DEST_DIR)/builder boot.go || exit 1
43+
${DEV_ENV_PREFIX} -e CGO_ENABLED=0 ${DEV_ENV_IMAGE} go build -a -installsuffix cgo -ldflags '-s' -o $(BINARY_DEST_DIR)/boot boot.go || exit 1
4444
@$(call check-static-binary,$(BINARY_DEST_DIR)/builder)
4545
for i in $(BINARIES); do \
4646
${DEV_ENV_PREFIX} -e CGO_ENABLED=0 ${DEV_ENV_IMAGE} go build -a -installsuffix cgo -ldflags '-s' -o $(BINARY_DEST_DIR)/$$i pkg/src/$$i.go || exit 1; \

0 commit comments

Comments
 (0)