From b90a71a4c4825ec08120fd77ff329fb271b0e7eb Mon Sep 17 00:00:00 2001 From: nyyu Date: Fri, 17 Mar 2023 19:42:20 +0100 Subject: [PATCH] fix: always update_pkg --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 2de2bed..75ebc0f 100755 --- a/build.sh +++ b/build.sh @@ -54,10 +54,10 @@ for d in */; do if ! grep -c 'pkgver()' PKGBUILD >/dev/null; then repo=$(grep -oPm 1 'github\.com\/\K(\w|-)+\/(\w|-)+' .SRCINFO) if [ -n "${repo}" ]; then - update_github_tag "${repo}" && update_pkg + update_github_tag "${repo}" fi fi - + update_pkg build true fi cd ..