From 11083c0d85e4443807e5bd526df47bf97e653672 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 31 Oct 2017 11:01:31 +1300 Subject: 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 --- 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 883deacb07..baa907d820 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 -- cgit 1.2.3-korg