aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-10-31 11:01:31 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-11-03 16:14:14 +1300
commit11083c0d85e4443807e5bd526df47bf97e653672 (patch)
tree092e93ac8141d142a8246bd07232ea8f5f0697b4
parentd86576ea59094655cf482384f60990024b3f3adf (diff)
downloadopenembedded-core-contrib-paule/core-fixes.tar.gz
scripts/send-pull-request: allow -C to be used multiple timespaule/core-fixes
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@linux.intel.com>
-rwxr-xr-xscripts/send-pull-request2
1 files changed, 1 insertions, 1 deletions
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