Skip to content

Commit 6edf59c

Browse files
committed
Fix signed-plugins CI grep pattern for H5PLint.c
The "Verify signature verification code exists" step used: grep "Verify signature" src/H5PLint.c but the actual comment in H5PLint.c is: /* Verify plugin signature before loading */ Update the grep to "Verify plugin signature" so it matches the existing comment and the step no longer fails with exit code 1.
1 parent 7aa91ff commit 6edf59c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/signed-plugins.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
- name: Verify signature verification code exists
209209
run: |
210210
echo "Checking signature verification implementation..."
211-
grep -A 3 "Verify signature" src/H5PLint.c
211+
grep -A 3 "Verify plugin signature" src/H5PLint.c
212212
echo "All ranks verify independently in both serial and parallel modes"
213213
214214
- name: Run comprehensive tests

0 commit comments

Comments
 (0)