From: Paul Eggleton Date: Mon, 29 Jul 2019 21:54:43 +0000 (+1200) Subject: scripts/create-pull-request: fix putting subject containing / into cover letter X-Git-Tag: uninative-2.7~635 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d4c3f93d7407ac1ea20b33149f20153972d631c0;p=openembedded-core.git 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. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- 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