fix: always update_pkg

This commit is contained in:
nyyu 2023-03-17 19:42:20 +01:00
parent 2d07c80f82
commit b90a71a4c4

View file

@ -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 ..