[oe-commits] [openembedded-core] 64/66: scripts/send-pull-request: allow -C to be used multiple times

git at git.openembedded.org git at git.openembedded.org
Sun Nov 5 13:56:50 UTC 2017


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 85b3a78ad5d7784e91c24271525d0d37b001def6
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Fri Nov 3 16:16:12 2017 +1300

    scripts/send-pull-request: allow -C to be used multiple times
    
    Allow -C to be specified multiple times in order to CC multiple people
    instead of only taking the last specified value. (You can already use
    commas to separate multiple recipients, but it makes sense to support
    this usage as well as commas as separators may not be immediately
    obvious).
    
    Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 scripts/send-pull-request | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/send-pull-request b/scripts/send-pull-request
index 883deac..baa907d 100755
--- a/scripts/send-pull-request
+++ b/scripts/send-pull-request
@@ -82,7 +82,7 @@ while getopts "acC:hp:t:" OPT; do
 		GITSOBCC="--signed-off-by-cc"
 		;;
 	C)
-		EXTRA_CC="$OPTARG"
+		EXTRA_CC="$EXTRA_CC,$OPTARG"
 		;;
 	h)
 		usage

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


More information about the Openembedded-commits mailing list