Skip to content

Commit

Permalink
Fix make-examples-clean assuming true is in /bin/true
Browse files Browse the repository at this point in the history
`make-examples-clean` won't work on a mac by default as `true` is in `/usr/bin/true`.

Both /bin and /usr/bin should be on the PATH usually though.
  • Loading branch information
groldan committed Oct 18, 2024
1 parent 799322a commit e3c2543
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ examples-clean:
rm -f examples/jdbc/charts/*.tgz
rm -f examples/pgconfig-acl/charts/*.tgz
rm -f examples/pgconfig-wms-hpa/charts/*.tgz
${HELM} uninstall gs-cloud-common || /bin/true
${HELM} uninstall gs-cloud-datadir || /bin/true
${HELM} uninstall gs-cloud-statefulset || /bin/true
${HELM} uninstall gs-cloud-jdbc || /bin/true
${HELM} uninstall gs-cloud-pgconfig-acl || /bin/true
${HELM} uninstall gs-cloud-pgconfig-wms-hpa || /bin/true
${HELM} uninstall gs-cloud-common || true
${HELM} uninstall gs-cloud-datadir || true
${HELM} uninstall gs-cloud-statefulset || true
${HELM} uninstall gs-cloud-jdbc || true
${HELM} uninstall gs-cloud-pgconfig-acl || true
${HELM} uninstall gs-cloud-pgconfig-wms-hpa || true


.PHONY: dependencies
Expand Down

0 comments on commit e3c2543

Please sign in to comment.