Amazon FreeRTOS: fix tag order
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
parent
ae98e259d3
commit
cc9ce75d07
1 changed files with 5 additions and 5 deletions
|
|
@ -3,15 +3,15 @@
|
|||
list_tags_h()
|
||||
{
|
||||
|
||||
echo "$tags" |
|
||||
grep -v '_Major' |
|
||||
tac |
|
||||
sed -r 's/^(v[0-9])\.([0-9]*)(.*)$/\1 \1.\2 \1.\2\3/'
|
||||
|
||||
echo "$tags" |
|
||||
grep '_Major' |
|
||||
tac |
|
||||
sed -r 's/^(.*)(_Major)$/new \1 \1\2/'
|
||||
|
||||
echo "$tags" |
|
||||
grep -v '_Major' |
|
||||
tac |
|
||||
sed -r 's/^(v[0-9])\.([0-9]*)(.*)$/\1 \1.\2 \1.\2\3/'
|
||||
}
|
||||
|
||||
get_latest()
|
||||
|
|
|
|||
Loading…
Reference in a new issue