[oe-commits] [openembedded-core] 09/16: scripts/create-pull-request: fix putting subject containing / into cover letter

git at git.openembedded.org git at git.openembedded.org
Mon Jul 29 22:47:33 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit d4c3f93d7407ac1ea20b33149f20153972d631c0
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Tue Jul 30 09:54:43 2019 +1200

    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 <paul.eggleton at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/create-pull-request | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/create-pull-request b/scripts/create-pull-request
index 762828f..8eefcf6 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
 
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list