diff options
| -rwxr-xr-x | build-repo.sh | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/build-repo.sh b/build-repo.sh index 6cfc416..bf6f783 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}' | sort -r); 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 @@ -129,6 +129,7 @@ sync () {  # update the repository +clean  fetch  build  clean | 
