diff options
| -rwxr-xr-x | build-repo.sh | 4 | 
1 files 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  | 
