Update amazon-freertos tagging

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
Michael Opdenacker 2019-10-01 18:26:01 +02:00
parent dad935cbc7
commit 5346ac9eff

View file

@ -4,12 +4,12 @@ list_tags_h()
{
echo "$tags" |
grep '_Major' |
grep -v '^v' |
tac |
sed -r 's/^(.*)(_Major)$/new \1 \1\2/'
sed -r 's/^([0-9][0-9][0-9][0-9])([0-9][0-9])(.*)$/\1 \1\2 \1\2\3/'
echo "$tags" |
grep -v '_Major' |
grep '^v' |
tac |
sed -r 's/^(v[0-9]*)\.([0-9]*)(.*)$/\1 \1.\2 \1.\2\3/'
}