diff options
author | davidovski <david@davidovski.xyz> | 2021-10-06 23:30:26 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-06 23:30:26 +0100 |
commit | 9a22337a23d6122e13323f3b9e51c4cf037cbf9f (patch) | |
tree | a54c067f41ee7cb71e14e235fea5dcb9af84cfe2 /build-repo.sh | |
parent | 2939f4d1c36d784773f6ab642e83b48e413adbfc (diff) |
added features for branch switching
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 |