mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
build_tools/list_committers_since: account for possibility of mktemp
failure.
This commit is contained in:
parent
64b5a22274
commit
ef4f3b7334
1 changed files with 2 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue