Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c841d7c

Browse files
committedMar 21, 2025··
fixups
1 parent ada5dd2 commit c841d7c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed
 

‎solution-base/mongodb/Makefile

+1-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CHART_REPO:="https://charts.bitnami.com/bitnami"
55
CHART_MONGO_SHARDED_VERSION:="7.9.1"
66

77
PATCH_DIR:="${ROOT_DIR}/patches"
8-
PATCH_FILES:=$(shell ls ${PATCH_DIR}/*)
8+
PATCH_FILES:=$(shell ls -d ${PATCH_DIR}/*)
99
HELM=helm
1010

1111
.PHONY: fetch patch
@@ -22,11 +22,6 @@ patch:
2222
echo "No patch files found in ${PATCH_DIR}. Job is done"; \
2323
exit 0; \
2424
fi
25-
@echo "Checking patches..."
26-
@for patch in ${PATCH_FILES}; do \
27-
echo "Checking $$patch"; \
28-
git apply --check "$$patch" || { echo "Patch check failed for $$patch"; exit 1; }; \
29-
done
3025
@echo "Applying patches..."
3126
@for patch in ${PATCH_FILES}; do \
3227
echo "Applying $$patch"; \

0 commit comments

Comments
 (0)
Please sign in to comment.