summaryrefslogtreecommitdiff
path: root/scripts/contributors.sh
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-08-27 14:25:24 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-08-27 14:25:24 +0200
commit4608fa4ae645562e40fe61e08f78b4a8113e5d91 (patch)
tree553c9e11dae29499ace94c26690bf5974ef3f3c2 /scripts/contributors.sh
parentad691b191afd91bb747b6bbaa04c54303c6d581a (diff)
downloadgnurl-4608fa4ae645562e40fe61e08f78b4a8113e5d91.tar.gz
gnurl-4608fa4ae645562e40fe61e08f78b4a8113e5d91.tar.bz2
gnurl-4608fa4ae645562e40fe61e08f78b4a8113e5d91.zip
scripts: improve the "get latest curl release tag" logic
... by insiting on it matching "^curl-".
Diffstat (limited to 'scripts/contributors.sh')
-rwxr-xr-xscripts/contributors.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contributors.sh b/scripts/contributors.sh
index 6a6d34484..e9b426968 100755
--- a/scripts/contributors.sh
+++ b/scripts/contributors.sh
@@ -34,7 +34,7 @@ if test "$start" = "-h"; then
exit
fi
if test -z "$start"; then
- start=`git tag --sort=taggerdate | tail -1`;
+ start=`git tag --sort=taggerdate | grep "^curl-" | tail -1`;
echo "Since $start:"
fi