summaryrefslogtreecommitdiffstats
path: root/scripts/create-pull-request
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-08-05 12:16:00 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-09 00:14:00 -0700
commitda0f5037b691b4a6a64e5865063af13d2be73679 (patch)
tree5d7f536ca6a0e8516a8fab387f94e544dc39ee58 /scripts/create-pull-request
parentd31f89bd816cd8b2160acac2af70d9d5f13b3b5c (diff)
downloadpoky-da0f5037b691b4a6a64e5865063af13d2be73679.tar.gz
create-pull-request: cd to relative directory
create-pull-request -d path creates empty patches if directory is specified as a path, i.e. ./bitbake or ./bitbake/ or full path. It behaves expected way only if script is run with -d bitbake, i.e. relative dir name doesn't contain '\'. Fixed this unwanted behaviour by changing directory and running git format-patch in it with --relative, without specifying relative path as a parameter. (From OE-Core rev: 3042956a86167f89beccc5d05f1fad1844e7c36a) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/create-pull-request')
-rwxr-xr-xscripts/create-pull-request5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/create-pull-request b/scripts/create-pull-request
index 216edfd751..be493795b5 100755
--- a/scripts/create-pull-request
+++ b/scripts/create-pull-request
@@ -177,12 +177,15 @@ mkdir $ODIR
177 177
178if [ -n "$RELDIR" ]; then 178if [ -n "$RELDIR" ]; then
179 ODIR=$(realpath $ODIR) 179 ODIR=$(realpath $ODIR)
180 extraopts="--relative=$RELDIR" 180 pushd $RELDIR > /dev/null
181 extraopts="--relative"
181fi 182fi
182 183
183# Generate the patches and cover letter 184# Generate the patches and cover letter
184git format-patch $extraopts -M40 --subject-prefix="$PREFIX" -n -o $ODIR --thread=shallow --cover-letter $RELATIVE_TO..$COMMIT_ID > /dev/null 185git format-patch $extraopts -M40 --subject-prefix="$PREFIX" -n -o $ODIR --thread=shallow --cover-letter $RELATIVE_TO..$COMMIT_ID > /dev/null
185 186
187[ -n "$RELDIR" ] && popd > /dev/null
188
186# Customize the cover letter 189# Customize the cover letter
187CL="$ODIR/0000-cover-letter.patch" 190CL="$ODIR/0000-cover-letter.patch"
188PM="$ODIR/pull-msg" 191PM="$ODIR/pull-msg"