Skip to content

Commit 57688c5

Browse files
authored
Merge pull request #2406 from camilamacedo86/fix-issue-make
🐛 fixes default value for the --ignore-not-found flag in the install and undeploy make targets
2 parents edead38 + dfbca08 commit 57688c5

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

pkg/plugins/golang/v2/scaffolds/internal/templates/makefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ docker-push: ## Push docker image with the manager.
134134
##@ Deployment
135135
136136
ifndef ignore-not-found
137-
ignore-not-found = no
137+
ignore-not-found = false
138138
endif
139139
140140
.PHONY: install

pkg/plugins/golang/v3/scaffolds/internal/templates/makefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ docker-push: ## Push docker image with the manager.
139139
##@ Deployment
140140
141141
ifndef ignore-not-found
142-
ignore-not-found = no
142+
ignore-not-found = false
143143
endif
144144
145145
.PHONY: install

testdata/project-v2-addon/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ docker-push: ## Push docker image with the manager.
7878
##@ Deployment
7979

8080
ifndef ignore-not-found
81-
ignore-not-found = no
81+
ignore-not-found = false
8282
endif
8383

8484
.PHONY: install

testdata/project-v2-multigroup/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ docker-push: ## Push docker image with the manager.
7878
##@ Deployment
7979

8080
ifndef ignore-not-found
81-
ignore-not-found = no
81+
ignore-not-found = false
8282
endif
8383

8484
.PHONY: install

testdata/project-v2/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ docker-push: ## Push docker image with the manager.
7878
##@ Deployment
7979

8080
ifndef ignore-not-found
81-
ignore-not-found = no
81+
ignore-not-found = false
8282
endif
8383

8484
.PHONY: install

testdata/project-v3-addon/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ docker-push: ## Push docker image with the manager.
8080
##@ Deployment
8181

8282
ifndef ignore-not-found
83-
ignore-not-found = no
83+
ignore-not-found = false
8484
endif
8585

8686
.PHONY: install

testdata/project-v3-config/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ docker-push: ## Push docker image with the manager.
8080
##@ Deployment
8181

8282
ifndef ignore-not-found
83-
ignore-not-found = no
83+
ignore-not-found = false
8484
endif
8585

8686
.PHONY: install

testdata/project-v3-multigroup/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ docker-push: ## Push docker image with the manager.
8080
##@ Deployment
8181

8282
ifndef ignore-not-found
83-
ignore-not-found = no
83+
ignore-not-found = false
8484
endif
8585

8686
.PHONY: install

testdata/project-v3-v1beta1/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ docker-push: ## Push docker image with the manager.
8181
##@ Deployment
8282

8383
ifndef ignore-not-found
84-
ignore-not-found = no
84+
ignore-not-found = false
8585
endif
8686

8787
.PHONY: install

testdata/project-v3/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ docker-push: ## Push docker image with the manager.
8080
##@ Deployment
8181

8282
ifndef ignore-not-found
83-
ignore-not-found = no
83+
ignore-not-found = false
8484
endif
8585

8686
.PHONY: install

0 commit comments

Comments
 (0)