Exclude android-*-qt5 and apple-darwin-qt5-* packages from version update

This commit is contained in:
Martchus 2020-06-14 17:43:48 +02:00
parent 18443d861e
commit ae259073ca
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,8 @@ for pkgbuild_file in "${PKGBUILD_DIR:-.}"/*/*/PKGBUILD; do
# skip if version doesn't differ
source "$pkgbuild_file"
[[ $version == $pkgver ]] && continue
pattern='(android|apple-darwin)-.*'
[[ $pkgname =~ $pattern ]] && continue
# check if template exists and modify template instead
template=$pkgbuild_file.sh.ep