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 3c2ab6e..d6ac627 100755 --- a/build-repo.sh +++ b/build-repo.sh @@ -15,7 +15,7 @@ build () { echo-head "repo" >> $REPOS_INDEX echo "<h1>repo</h1>" >> $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) |