create-pull-request: alphabetize arguments

Some initial cleanup prior to a significant overhaul.

(From OE-Core rev: 926ca57b0eca7d94b933d2949d04a20ff176e57d)

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Darren Hart 2011-05-13 09:30:53 -07:00 committed by Richard Purdie
parent 282b96763f
commit 8a64780425
1 changed files with 7 additions and 7 deletions

View File

@ -10,14 +10,14 @@ usage() {
CMD=$(basename $0)
cat <<EOM
Usage: $CMD [-h] [-o output_dir] [-m msg_body_file] [-s subject] [-r relative_to] [-i commit_id] -b contrib_branch
-h Display this help message
-o output_dir Specify the output directory for the messages (default: pull-PID)
-m msg_body_file The file containing a blurb to be inserted into the summary email
-r relative_to Starting commit (default: master)
-i commit_id Ending commit (default: HEAD)
-b contrib_branch Branch-name in the $PULL_URL
-s subject The subject to be inserted into the summary email
-h Display this help message
-i commit_id Ending commit (default: HEAD)
-m msg_body_file The file containing a blurb to be inserted into the summary email
-o output_dir Specify the output directory for the messages (default: pull-PID)
-p prefix Use [prefix N/M] instead of [PATCH N/M] as the subject prefix
-r relative_to Starting commit (default: master)
-s subject The subject to be inserted into the summary email
Examples:
$CMD -b nitin/basic
@ -28,7 +28,7 @@ EOM
}
# Parse and validate arguments
while getopts "b:hi:m:o:r:s:p:" OPT; do
while getopts "b:hi:m:o:p:r:s:" OPT; do
case $OPT in
b)
CONTRIB_BRANCH="$OPTARG"