Skip to content

Commit

Permalink
feat: Updated patch Paths for Make.fabricv4 File (#16)
Browse files Browse the repository at this point in the history
Updated patch Paths for Make.fabricv4 File"
  • Loading branch information
thogarty authored Aug 16, 2024
2 parents 7804def + d819f8d commit 601152b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.fabricv4
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ patch:

patch-post:
# patch is idempotent, always starting with the generated files
for diff in $(shell find patches/post -name \*.patch | sort -n); do \
for diff in $(shell find patches/services/${PACKAGE_NAME} -name \*.patch | sort -n); do \
patch --no-backup-if-mismatch -N -t -p1 -i $$diff; \
done

Expand Down
2 changes: 1 addition & 1 deletion templates/Makefile.sdk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ patch:

patch-post:
# patch is idempotent, always starting with the generated files
for diff in $(shell find patches/post -name \*.patch | sort -n); do \
for diff in $(shell find patches/services/${PACKAGE_NAME} -name \*.patch | sort -n); do \
patch --no-backup-if-mismatch -N -t -p1 -i $$diff; \
done

Expand Down

0 comments on commit 601152b

Please sign in to comment.