summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-10-31 09:34:40 +0100
committerErich Eckner <git@eckner.net>2019-10-31 09:34:40 +0100
commitcf295ab929c7cb730cc0a7a2359f6966bbde2365 (patch)
tree7203332568270370ca5924cc64be4df5c6a24225 /bin
parentcc937b24a8ebe83c551d82588210dbb112d146f4 (diff)
downloadbuilder-cf295ab929c7cb730cc0a7a2359f6966bbde2365.tar.xz
bin/get-package-updates: be more resilient against bogus svn source tree names
Diffstat (limited to 'bin')
-rwxr-xr-xbin/get-package-updates2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-package-updates b/bin/get-package-updates
index 5f7f618..34f3b6e 100755
--- a/bin/get-package-updates
+++ b/bin/get-package-updates
@@ -357,7 +357,7 @@ echo 'Check modified packages from the last update, and put them to the build li
fi | \
grep '^\S\+ .\s[^/]\+/repos/[^/]\+/PKGBUILD$' | \
# ignore i686
- grep -v -- '-i686/PKGBUILD$' | \
+ grep -- '-\(any\|x86_64\)/PKGBUILD$' | \
# ignore staging and testing
grep -v -- '[-/]\(staging\|testing\|unstable\)-[^/]\+/PKGBUILD$' | \
sed 's|^\(\S\+\) \(.\)\t\([^/]\+\)/repos/\([^/]\+\)-[^/-]\+/PKGBUILD$|\2 \3 \1 \4|'