Skip to content

Commit 07d9785

Browse files
arschlesAaron Schlesinger
authored andcommitted
fix(Makefile): remove direct fetcher build
since it’s run by the main process now
1 parent cc919be commit 07d9785

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ bootstrap:
4141
# the build as a `docker build`.
4242
build:
4343
${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
44-
${DEV_ENV_PREFIX} -e CGO_ENABLED=0 ${DEV_ENV_IMAGE} go build -a -installsuffix cgo -ldflags '-s' -o $(BINARY_DEST_DIR)/fetcher fetcher/fetcher.go || exit 1
4544
@$(call check-static-binary,$(BINARY_DEST_DIR)/builder)
46-
@$(call check-static-binary,$(BINARY_DEST_DIR)/fetcher)
4745
for i in $(BINARIES); do \
4846
${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; \
4947
done

0 commit comments

Comments
 (0)