contrithanks: Use the most recent tag by default

(similar to 5296abe)

Closes #4883
This commit is contained in:
Frank Gevaerts 2020-02-05 11:34:07 +01:00 коммит произвёл Daniel Stenberg
Родитель 5296abe3af
Коммит d2411a78ee
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -28,8 +28,12 @@
start=$1
if test -z "$start"; then
if test "$start" = "-h"; then
echo "Usage: $0 <since this tag/hash>"
exit
fi
if test -z "$start"; then
start=`git tag --sort=taggerdate | tail -1`;
fi
cat ./docs/THANKS