util/release: always remove temporary files
Change-Id: I8e6ff5bc72618e782ed472878bd6ea294be1b5ca Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37021 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
eb80e053b6
commit
d653e491e1
|
@ -427,8 +427,8 @@ NEW_AUTHORS=$(git log --pretty=%an "${OLD_GIT_VERSION}" 2>/dev/null | sort | \
|
|||
git log --pretty=%an "${NEW_GIT_VERSION}" 2>/dev/null | \
|
||||
sort | uniq > "$after_names" && \
|
||||
grep -Fxv -c -f "$before_names" "$after_names")
|
||||
NEW_AUTHOR_LIST=$( grep -Fxv -f "$before_names" "$after_names" && \
|
||||
rm "$before_names" "$after_names")
|
||||
NEW_AUTHOR_LIST=$( grep -Fxv -f "$before_names" "$after_names")
|
||||
rm -f "$before_names" "$after_names"
|
||||
{
|
||||
printf -- "- Total commits: %s\n" "$TOTAL_COMMITS"
|
||||
printf -- "- Total authors: %s\n" \
|
||||
|
|
Loading…
Reference in New Issue