From ddb46bb215e3bc6d4c5f0f99905be90d7f185d51 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 18 Jan 2022 15:17:05 +0000 Subject: fixed grep inversion --- build-repo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-repo.sh b/build-repo.sh index 3c2ab6e..d6ac627 100755 --- a/build-repo.sh +++ b/build-repo.sh @@ -15,7 +15,7 @@ build () { echo-head "repo" >> $REPOS_INDEX echo "

repo

" >> $REPOS_INDEX - for REPO in $(du -h buildfiles/repo/* | awk '{print $2}' | sort -r | grep -i skip); do + for REPO in $(du -h buildfiles/repo/* | awk '{print $2}' | sort -r | grep -v skip); do REPO_NAME=$(echo $REPO | cut -d"/" -f2-) REPO_DIR=$(realpath dist/$REPO_NAME) -- cgit v1.2.1