From 5c06053b011bb179b8a6943d64414cb5117a136c Mon Sep 17 00:00:00 2001 From: davidovski Date: Thu, 13 Jan 2022 12:45:58 +0000 Subject: fixed false green highlights for certain packages made regex use ^ to check if package is ^new, rather than without --- build-repo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-repo.sh b/build-repo.sh index 365e121..d43a687 100755 --- a/build-repo.sh +++ b/build-repo.sh @@ -85,10 +85,10 @@ extend-index () { DESC=$(grep $PKG_NAME xibuild.report.log | cut -d" " -f3-) COLOR="none" - if grep $PKG_NAME xibuild.report.log | grep -q new; then + if grep $PKG_NAME xibuild.report.log | grep -q "^new"; then COLOR="pass" fi - if grep $PKG_NAME xibuild.report.log | grep -q fail; then + if grep $PKG_NAME xibuild.report.log | grep -q "^fail"; then if [ -f dist/$REPO_NAME/$PKG_NAME.xipkg ]; then COLOR="warning" else -- cgit v1.2.1