Skip to content

Commit f45178e

Browse files
timiclaude
authored andcommitted
fix: use BSD-compatible grep for extracting submission ID
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a3c400d commit f45178e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ jobs:
194194
195195
echo "$OUTPUT"
196196
197-
# Extract submission ID and get detailed log
198-
SUBMISSION_ID=$(echo "$OUTPUT" | grep -oP 'id: \K[a-f0-9-]+' | head -1)
197+
# Extract submission ID and get detailed log (use BSD-compatible grep)
198+
SUBMISSION_ID=$(echo "$OUTPUT" | grep "id:" | head -1 | awk '{print $2}')
199199
if [ -n "$SUBMISSION_ID" ]; then
200200
echo "Fetching detailed log for submission: $SUBMISSION_ID"
201201
xcrun notarytool log "$SUBMISSION_ID" \

0 commit comments

Comments
 (0)