From: Darren Hart Date: Wed, 1 Aug 2012 19:18:19 +0000 (-0700) Subject: send-pull-request: Make -a really imply -c X-Git-Tag: 2015-4~9703 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=319d2cc8e60450106b665ee4172e2e6dc90e14b5;p=openembedded-core.git 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 Signed-off-by: Richard Purdie --- 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