Fix u-boot menu version
- An incorrect match was causing errors on the server (1 field instead of 3) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
parent
f600515dc7
commit
a324bbcf15
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ list_tags_h()
|
|||
echo "$tags" |
|
||||
grep '^v20' |
|
||||
tac |
|
||||
sed -r 's/^(v20..)\.([0-9][0-9])\.(.*)$/\1 \1.\2 \1.\2.\3/'
|
||||
sed -r 's/^(v20..)\.([0-9][0-9])(.*)$/\1 \1.\2 \1.\2\3/'
|
||||
|
||||
echo "$tags" |
|
||||
grep -E '^(v1|U)' |
|
||||
|
|
|
|||
Loading…
Reference in a new issue