diff options
Diffstat (limited to 'build-repo.sh')
-rwxr-xr-x | build-repo.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-repo.sh b/build-repo.sh index c3dd2b0..6cfc416 100755 --- a/build-repo.sh +++ b/build-repo.sh @@ -9,7 +9,7 @@ fetch () { } build () { - for REPO in $(du -h xipkgs/repo/* | awk '{print $2}'); do + for REPO in $(du -h xipkgs/repo/* | awk '{print $2}' | sort -r); do REPO_NAME=$(echo $REPO | cut -d"/" -f2-) REPO_INDEX=dist/$REPO_NAME/index.html |