build_tools/list_committers_since: account for possibility of mktemp

failure.
This commit is contained in:
Érico Rolim 2020-11-13 12:58:03 -03:00 committed by Fabian Homborg
parent 64b5a22274
commit ef4f3b7334

View file

@ -13,7 +13,9 @@ if not contains -- $TAG (git tag)
end
set -l committers_to_tag (mktemp)
or exit 1
set -l committers_from_tag (mktemp)
or exit 1
# You might think it would be better to case-insensitively sort/compare the names
# to produce a more natural-looking list.