Update definition for op-tee

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
Michael Opdenacker 2020-11-04 09:15:44 +01:00
parent 3b20f73281
commit 7992eb48c3

View file

@ -13,3 +13,8 @@ list_tags()
echo "$tags" | echo "$tags" |
grep '^[0-9]\.' grep '^[0-9]\.'
} }
get_latest()
{
git tag | grep '^[0-9]\.' | grep -v '\-rc' | sort -V | tail -n 1
}