diff options
Diffstat (limited to 'scripts/create-pull-request')
-rwxr-xr-x | scripts/create-pull-request | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/create-pull-request b/scripts/create-pull-request index 19ba58869f..a3744cceaa 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request | |||
@@ -185,6 +185,14 @@ fi | |||
185 | # Generate the patches and cover letter | 185 | # Generate the patches and cover letter |
186 | 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 |
187 | 187 | ||
188 | if [ -z "$(ls -A $ODIR 2> /dev/null)" ]; then | ||
189 | echo "ERROR: $ODIR is empty, no cover letter and patches was generated!" | ||
190 | echo " This is most likely due to that \$RRELATIVE_TO..\$COMMIT_ID" | ||
191 | echo " ($RELATIVE_TO..$COMMIT_ID) don't contain any differences." | ||
192 | rmdir $ODIR | ||
193 | exit 1 | ||
194 | fi | ||
195 | |||
188 | [ -n "$RELDIR" ] && cd $pdir | 196 | [ -n "$RELDIR" ] && cd $pdir |
189 | 197 | ||
190 | # Customize the cover letter | 198 | # Customize the cover letter |