Skip to content

Commit c81eb6f

Browse files
authored
fix(makefile): remove surplus dry-run and fixed typo in build-installer
1 parent d0d693e commit c81eb6f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Makefile

+1-7
Original file line numberDiff line numberDiff line change
@@ -220,12 +220,6 @@ bundle-build: ## Build the bundle image.
220220
bundle-push: ## Push the bundle image.
221221
$(MAKE) docker-push IMG=$(BUNDLE_IMG)
222222

223-
.PHONY: dry-run
224-
dry-run: manifests kustomize
225-
cd config/manager && $(KUSTOMIZE) edit set image controller=${IMG}
226-
mkdir -p ./dry-run
227-
$(KUSTOMIZE) build config/default > dry-run/manifests.yaml
228-
229223
.PHONY: opm
230224
OPM = ./bin/opm
231225
opm: ## Download opm locally if necessary.
@@ -271,4 +265,4 @@ catalog-push: ## Push a catalog image.
271265
build-installer: manifests generate kustomize ## Generate a consolidated YAML with CRDs and deployment.
272266
mkdir -p dist
273267
cd config/manager && $(KUSTOMIZE) edit set image controller=${IMG}
274-
$(KUSTOMIZE) build config/default > dist/install.yam
268+
$(KUSTOMIZE) build config/default > dist/install.yaml

0 commit comments

Comments
 (0)