meso-web

Sources of the |Méso|Star> website
git clone git://git.meso-star.fr/meso-web.git
Log | Files | Refs | README | LICENSE

commit c93e382bed342722ed1e36e3205b28c1034df73b
parent 5cf2c4b9653c18e2286d2c88f21233fcbac93c35
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu,  3 Dec 2020 18:59:43 +0100

Fix the order of listed archive to download

Diffstat:
Mmeso-menu.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meso-menu.sh b/meso-menu.sh @@ -363,7 +363,7 @@ print_downloads() { echo ' <th>Sources</th>' echo ' </tr>' - local archs=$(find downloads/$prefix_low -regex ".*/$prefix-[0-9]+\.[0-9]+\.[0-9]+-.*tar.gz" | sort -r ) + local archs=$(find downloads/$prefix_low -regex ".*/$prefix-[0-9]+\.[0-9]+\.[0-9]+-.*tar.gz" | sort -rV ) local arch; for arch in $archs; do local version=$(echo $arch | sed "s/.*${prefix}-\([0-9]\+.[0-9]\+.[0-9]\+\)-.*/\1/g")