Sort the versions in the output XML according to their version

This commit is contained in:
Christian Wolf 2022-04-04 14:00:40 +02:00
parent 68f2edc3be
commit f809bbff20

View File

@ -4,7 +4,7 @@
cat res/prefix.template > slt-update.xml
find releases -name slt-\* | while read f
find releases -name slt-\* | sort -V | while read f
do
VSTR=`echo "$f" | sed -E 's@releases/slt-@@; s@^([0-9]+\.[0-9]+\.[0-9]+).*$@\1@'`