mirror of
https://github.com/curl/curl.git
synced 2026-08-25 20:43:32 +03:00
scripts: improve the "get latest curl release tag" logic
... by insiting on it matching "^curl-".
This commit is contained in:
parent
ad691b191a
commit
4608fa4ae6
3 changed files with 3 additions and 3 deletions
|
|
@ -33,7 +33,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`;
|
||||
fi
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue