From 13f70a29238f059aa1c1abbece7dd78513bffc60 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 18 Jan 2022 14:39:06 +0000 Subject: made it skip the skip repo --- build-repo.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-repo.sh b/build-repo.sh index eb8fc62..3c2ab6e 100755 --- a/build-repo.sh +++ b/build-repo.sh @@ -15,13 +15,16 @@ build () { echo-head "repo" >> $REPOS_INDEX echo "

repo

" >> $REPOS_INDEX - for REPO in $(du -h buildfiles/repo/* | awk '{print $2}' | sort -r ); do + for REPO in $(du -h buildfiles/repo/* | awk '{print $2}' | sort -r | grep -i skip); do REPO_NAME=$(echo $REPO | cut -d"/" -f2-) REPO_DIR=$(realpath dist/$REPO_NAME) REPO_INDEX=$REPO_DIR/index.html REPO_LIST_OLD=$REPO_DIR/packages.txt REPO_LIST=$REPO_DIR/packages.list + + echo "

$REPO_NAME

" >> $REPOS_INDEX + mkdir -pv $REPO_DIR mkdir -pv $REPO_DIR/logs #mkdir -pv dist/$REPO_NAME/src @@ -47,8 +50,6 @@ build () { generate-package-list add-additional - echo "

$REPO_NAME

" >> $REPOS_INDEX - echo "

package count: $(ls dist/$REPO_NAME/*.xipkg | wc -l)

" >> $REPOS_INDEX done; -- cgit v1.2.1