Skip to content

Commit 484852a

Browse files
committed
mid: Support Message-ID
'b4 --add-message-id' uses 'Message-ID', similar to what is in the email headers. While patchew uses 'Message-ID'. Allow both, or any variation. Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
1 parent 83020b2 commit 484852a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ always_build() {
202202

203203
get_mid() { local mid
204204
mid=$(git log -1 --format="format:%b" | \
205-
grep "^Message-Id: " | \
205+
grep -i "^Message-Id: " | \
206206
tail -n1 | \
207207
awk '{print $2}')
208208

0 commit comments

Comments
 (0)