From bbd51cbc4a65c2d3958723d92f8ae9fd9073cccd Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 30 Jul 2019 09:54:43 +1200 Subject: scripts/create-pull-request: fix putting subject containing / into cover letter If a single-commit series had a shortlog containing a "/" character then that prevented putting the shortlog into the subject of the cover letter message. Use a different separating character with the sed command (one much less likely to appear) in order to fix it. (From OE-Core rev: d4c3f93d7407ac1ea20b33149f20153972d631c0) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- scripts/create-pull-request | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/create-pull-request b/scripts/create-pull-request index 762828fd9a..8eefcf63a5 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request @@ -257,7 +257,7 @@ fi # Replace the SUBJECT token with it. if [ -n "$SUBJECT" ]; then - sed -i -e "s/\*\*\* SUBJECT HERE \*\*\*/$SUBJECT/" "$CL" + sed -i -e "s\`\*\*\* SUBJECT HERE \*\*\*\`$SUBJECT\`" "$CL" fi -- cgit v1.2.3-54-g00ecf