BlueZ: Use sed -E for portability

This commit is contained in:
Soenke Huster 2021-10-18 11:28:00 +02:00
parent f77b14860e
commit 2899eafe38
No known key found for this signature in database
GPG key ID: 3D09BECE9BA2F912

View file

@ -10,7 +10,7 @@ list_tags_h()
echo "$tags" |
grep '^[0-9]' |
sort -rV |
sed -r 's/^([0-9]*)\.([0-9]*)$/v\1 v\1.\2 \1.\2/'
sed -E 's/^([0-9]*)\.([0-9]*)$/v\1 v\1.\2 \1.\2/'
}
get_latest()