makefile: tiny fix to not fail cleanup if files/folders dont exist

This commit is contained in:
2024-12-06 18:33:11 +01:00
parent 305af7eabf
commit e117238c0d

View File

@@ -7,11 +7,13 @@ push_only:
helm push nextcloud-${VERSION}.tgz oci://git.djf.lol/davidfrickert/nextcloud
build_cleanup:
rm -r charts
rm -rf charts
push_cleanup:
rm nextcloud-${VERSION}.tgz
artifact_cleanup:
rm -f nextcloud-${VERSION}.tgz
build: build_only build_cleanup
push: push_only push_cleanup
push: push_only artifact_cleanup_cleanup
cleanup: build_cleanup artifact_cleanup