diff options
author | Erich Eckner <git@eckner.net> | 2019-11-18 11:46:19 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-11-18 11:46:19 +0100 |
commit | 073125f8f462e0ae1c11f832705588b783afc8aa (patch) | |
tree | 30c05701eb24c74c076ab9de895fd246b994b04d /bin | |
parent | da676e6ab58b509a8bb1897c920c17c936abe5cb (diff) | |
download | builder-073125f8f462e0ae1c11f832705588b783afc8aa.tar.xz |
bin/get-package-updates: still-available PKGBUILDs of deleted packages must match exactly - otherwise we trigger on build-support/disabled/$pkgname/PKGBUILD, too
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/get-package-updates | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-package-updates b/bin/get-package-updates index 34f3b6e..25d1a83 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -387,7 +387,7 @@ echo 'Check modified packages from the last update, and put them to the build li if [ "${repository}" = "archlinux32" ]; then if git -C "${repo_path}" archive "${new_repo_revisions__archlinux32}" 2> /dev/null | \ tar -t 2> /dev/null | \ - grep -q "/$(str_to_regex "${package}")/PKGBUILD$"; then + grep -q '^[^/]\+/'"$(str_to_regex "${package}")"'/PKGBUILD$'; then found_package=true fi else |