Skip to content

Commit 83335c9

Browse files
committed
e2e: fix Makefile
$ make test find: ‘test/e2e/data/infrastructure-cloudstack/v1beta*/*/cluster-template*’: No such file or directory
1 parent 90076ea commit 83335c9

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
@@ -270,7 +270,7 @@ test: generate-deepcopy-test generate-manifest-test generate-mocks lint $(GINKGO
270270
@$(GINKGO_V2) --label-filter="!integ" --cover -coverprofile cover.out --covermode=atomic -v ./api/... ./controllers/... ./pkg/...; EXIT_STATUS=$$?;\
271271
./hack/testing_ginkgo_recover_statements.sh --remove; exit $$EXIT_STATUS
272272

273-
CLUSTER_TEMPLATES_INPUT_FILES=$(shell find test/e2e/data/infrastructure-cloudstack/v1beta*/*/cluster-template* test/e2e/data/infrastructure-cloudstack/*/bases/* -type f)
273+
CLUSTER_TEMPLATES_INPUT_FILES=$(shell find test/e2e/data/infrastructure-cloudstack/v1beta*/cluster-template* test/e2e/data/infrastructure-cloudstack/*/bases/* -type f)
274274
CLUSTER_TEMPLATES_OUTPUT_FILES=$(shell find test/e2e/data/infrastructure-cloudstack -type d -name "cluster-template*" -exec echo {}.yaml \;)
275275
.PHONY: e2e-cluster-templates
276276
e2e-cluster-templates: $(CLUSTER_TEMPLATES_OUTPUT_FILES) ## Generate cluster template files for e2e testing.

0 commit comments

Comments
 (0)