diff options
author | Darren Hart <dvhart@linux.intel.com> | 2012-08-01 12:18:19 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-02 15:21:28 +0100 |
commit | 319d2cc8e60450106b665ee4172e2e6dc90e14b5 (patch) | |
tree | d3de7fa48408048dcecaf9fb684e075460cf398d /scripts/send-pull-request | |
parent | bb4b71552da0d1f4396955f35db5819f88a7d2ae (diff) | |
download | openembedded-core-319d2cc8e60450106b665ee4172e2e6dc90e14b5.tar.gz openembedded-core-319d2cc8e60450106b665ee4172e2e6dc90e14b5.tar.bz2 openembedded-core-319d2cc8e60450106b665ee4172e2e6dc90e14b5.zip |
send-pull-request: Make -a really imply -c
The switch statement does not fall through as the comment suggests.
This results in -a not implying -c as was intended.
Add the two lines from -c to -a to achieve the intended behavior.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/send-pull-request')
-rwxr-xr-x | scripts/send-pull-request | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/send-pull-request b/scripts/send-pull-request index 09f42458c7..18a53c410e 100755 --- a/scripts/send-pull-request +++ b/scripts/send-pull-request @@ -71,8 +71,9 @@ harvest_recipients() while getopts "achp:t:" OPT; do case $OPT in a) + AUTO=1 + GITSOBCC="--signed-off-by-cc" AUTO_CL=1 - # Fall through to include -c ;; c) AUTO=1 |