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:28:38 +0100 |
commit | 0db5532abf9def95904ea73518c21c0620af03fe (patch) | |
tree | 502655dba98a167bcda5037b205a86316bf7e707 /scripts | |
parent | 1b138d167cefdcbcc969e4f9d2639cdc647945d7 (diff) | |
download | poky-0db5532abf9def95904ea73518c21c0620af03fe.tar.gz |
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.
(From OE-Core rev: 319d2cc8e60450106b665ee4172e2e6dc90e14b5)
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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() | |||
71 | while getopts "achp:t:" OPT; do | 71 | while getopts "achp:t:" OPT; do |
72 | case $OPT in | 72 | case $OPT in |
73 | a) | 73 | a) |
74 | AUTO=1 | ||
75 | GITSOBCC="--signed-off-by-cc" | ||
74 | AUTO_CL=1 | 76 | AUTO_CL=1 |
75 | # Fall through to include -c | ||
76 | ;; | 77 | ;; |
77 | c) | 78 | c) |
78 | AUTO=1 | 79 | AUTO=1 |