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:
Patrick Georgi 2019-11-20 16:49:41 +01:00
parent eb80e053b6
commit d653e491e1
1 changed files with 2 additions and 2 deletions

View File

@ -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 | \ git log --pretty=%an "${NEW_GIT_VERSION}" 2>/dev/null | \
sort | uniq > "$after_names" && \ sort | uniq > "$after_names" && \
grep -Fxv -c -f "$before_names" "$after_names") grep -Fxv -c -f "$before_names" "$after_names")
NEW_AUTHOR_LIST=$( grep -Fxv -f "$before_names" "$after_names" && \ NEW_AUTHOR_LIST=$( grep -Fxv -f "$before_names" "$after_names")
rm "$before_names" "$after_names") rm -f "$before_names" "$after_names"
{ {
printf -- "- Total commits: %s\n" "$TOTAL_COMMITS" printf -- "- Total commits: %s\n" "$TOTAL_COMMITS"
printf -- "- Total authors: %s\n" \ printf -- "- Total authors: %s\n" \