Skip to content

Commit 4c575d0

Browse files
WIP
1 parent 2e9fae5 commit 4c575d0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/template_update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ jobs:
102102
if [ ! -s update.patch ]; then
103103
echo "ℹ️ No template diffs; only SHA bump will occur."
104104
else
105-
if ! git apply --3way update.patch; then
106-
echo "::error ::Merge conflicts detected; aborting."
105+
if ! patch -p1 < update.patch; then
106+
echo "::error ::Patch could not be applied; possible conflict or missing files."
107107
exit 1
108108
fi
109109
git add -A

0 commit comments

Comments
 (0)