Skip to content

Commit

Permalink
Merge pull request #27 from muvaf/fix-makefile
Browse files Browse the repository at this point in the history
Fix path in CRD generation command
  • Loading branch information
jbw976 authored Oct 2, 2019
2 parents b64415a + f77b654 commit 033dd7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ go.test.unit: $(KUBEBUILDER)
# Generate manifests e.g. CRD, RBAC etc.
manifests: vendor
@$(INFO) Generating CRD manifests
go run vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go crd:trivialVersions=true paths=./aws/... output:dir=$(CRD_DIR)
@rm -rf $(CRD_DIR)
go run vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go crd:trivialVersions=true paths=./apis/... output:dir=$(CRD_DIR)
@$(OK) Generating CRD manifests

# Generate a coverage report for cobertura applying exclusions on
Expand Down

0 comments on commit 033dd7b

Please sign in to comment.