Skip to content

Commit c6f8c94

Browse files
authored
CLOUDP-220809: Fix v1.7.3 rebuilds (#1309)
1 parent 433fc4c commit c6f8c94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ e2e-openshift-upgrade:
107107
.PHONY: manager
108108
manager: generate fmt vet ## Build manager binary
109109
@echo "Building operator with version $(VERSION)"
110-
GOOS=$(TARGET_OS) GOARCH=$(TARGET_ARCH) go build -o bin/manager -ldflags="-X github.com/mongodb/mongodb-atlas-kubernetes/pkg/version.Version=$(VERSION)" cmd/manager/main.go
110+
CGO_ENABLED=0 GOOS=$(TARGET_OS) GOARCH=$(TARGET_ARCH) go build -o bin/manager -ldflags="-X github.com/mongodb/mongodb-atlas-kubernetes/pkg/version.Version=$(VERSION)" cmd/manager/main.go
111111

112112
.PHONY: run
113113
run: generate fmt vet manifests ## Run against the configured Kubernetes cluster in ~/.kube/config

0 commit comments

Comments
 (0)