diff options
-rwxr-xr-x | scripts/create-pull-request | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/create-pull-request b/scripts/create-pull-request index be493795b5..19ba58869f 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | # Copyright (c) 2010-2013, Intel Corporation. | 3 | # Copyright (c) 2010-2013, Intel Corporation. |
4 | # All Rights Reserved | 4 | # All Rights Reserved |
@@ -177,14 +177,15 @@ mkdir $ODIR | |||
177 | 177 | ||
178 | if [ -n "$RELDIR" ]; then | 178 | if [ -n "$RELDIR" ]; then |
179 | ODIR=$(realpath $ODIR) | 179 | ODIR=$(realpath $ODIR) |
180 | pushd $RELDIR > /dev/null | 180 | pdir=$(pwd) |
181 | cd $RELDIR | ||
181 | extraopts="--relative" | 182 | extraopts="--relative" |
182 | fi | 183 | fi |
183 | 184 | ||
184 | # Generate the patches and cover letter | 185 | # Generate the patches and cover letter |
185 | git format-patch $extraopts -M40 --subject-prefix="$PREFIX" -n -o $ODIR --thread=shallow --cover-letter $RELATIVE_TO..$COMMIT_ID > /dev/null | 186 | git format-patch $extraopts -M40 --subject-prefix="$PREFIX" -n -o $ODIR --thread=shallow --cover-letter $RELATIVE_TO..$COMMIT_ID > /dev/null |
186 | 187 | ||
187 | [ -n "$RELDIR" ] && popd > /dev/null | 188 | [ -n "$RELDIR" ] && cd $pdir |
188 | 189 | ||
189 | # Customize the cover letter | 190 | # Customize the cover letter |
190 | CL="$ODIR/0000-cover-letter.patch" | 191 | CL="$ODIR/0000-cover-letter.patch" |