diff options
| author | Darren Hart <dvhart@linux.intel.com> | 2011-05-13 10:33:39 -0700 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-19 23:35:14 +0100 | 
| commit | bf78a66f3adfc720ee84ff457143722f3752e8c5 (patch) | |
| tree | b9efb92a5e9f927af3b429403232446030d4298b /scripts | |
| parent | 926ca57b0eca7d94b933d2949d04a20ff176e57d (diff) | |
| download | openembedded-core-bf78a66f3adfc720ee84ff457143722f3752e8c5.tar.gz openembedded-core-bf78a66f3adfc720ee84ff457143722f3752e8c5.tar.bz2 openembedded-core-bf78a66f3adfc720ee84ff457143722f3752e8c5.zip | |
create-pull-request: whitespace cleanup
Indent with tabs, not spaces, to be consistent with other bash scripts.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/create-pull-request | 78 | 
1 files changed, 39 insertions, 39 deletions
| diff --git a/scripts/create-pull-request b/scripts/create-pull-request index 658b9c2b56..b911a64f33 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request @@ -29,42 +29,42 @@ EOM  # Parse and validate arguments  while getopts "b:hi:m:o:p:r:s:" OPT; do -    case $OPT in -    b) -        CONTRIB_BRANCH="$OPTARG" -        ;; -    h) -        usage -        exit 0 -        ;; -    i) -        COMMIT_ID="$OPTARG" -        ;; -    m) -        BODY="$OPTARG" -        if [ ! -e "$BODY" ]; then -            echo "ERROR: Body file does not exist" -            exit 1 -        fi -        ;; -    o) -        ODIR="$OPTARG" -        ;; -    p) -        PREFIX="$OPTARG" -        ;; -    r) -        RELATIVE_TO="$OPTARG" -        ;; -    s) -        SUBJECT="$OPTARG" -        ;; -    esac +	case $OPT in +	b) +		CONTRIB_BRANCH="$OPTARG" +		;; +	h) +		usage +		exit 0 +		;; +	i) +		COMMIT_ID="$OPTARG" +		;; +	m) +		BODY="$OPTARG" +		if [ ! -e "$BODY" ]; then +			echo "ERROR: Body file does not exist" +			exit 1 +		fi +		;; +	o) +		ODIR="$OPTARG" +		;; +	p) +		PREFIX="$OPTARG" +		;; +	r) +		RELATIVE_TO="$OPTARG" +		;; +	s) +		SUBJECT="$OPTARG" +		;; +	esac  done  if [ -z "$CONTRIB_BRANCH" ]; then -    usage -    exit 1 +	usage +	exit 1  fi @@ -73,9 +73,9 @@ fi  WEB_URL="$WEB_URL_PREFIX$CONTRIB_BRANCH"  wget -q $WEB_URL -O /dev/null  if [ $? -ne 0 ]; then -    echo "WARNING: Branch '$CONTRIB_BRANCH' was not found on the contrib git tree." -    echo "         Please check your contrib-branch parameter before sending." -    echo "" +	echo "WARNING: Branch '$CONTRIB_BRANCH' was not found on the contrib git tree." +	echo "         Please check your contrib-branch parameter before sending." +	echo ""  fi  if [ -e $ODIR ]; then @@ -107,13 +107,13 @@ EOM  # If the user specified a message body, insert it into the cover letter and  # remove the BLURB token.  if [ -n "$BODY" ]; then -    sed -i "/BLURB HERE/ r $BODY" "$CL" -    sed -i "/BLURB HERE/ d" "$CL" +	sed -i "/BLURB HERE/ r $BODY" "$CL" +	sed -i "/BLURB HERE/ d" "$CL"  fi  # If the user specified a subject, replace the SUBJECT token with it.  if [ -n "$SUBJECT" ]; then -    sed -i -e "s/\*\*\* SUBJECT HERE \*\*\*/$SUBJECT/" "$CL" +	sed -i -e "s/\*\*\* SUBJECT HERE \*\*\*/$SUBJECT/" "$CL"  fi | 
