summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-07-29 17:49:27 +0200
committerErich Eckner <git@eckner.net>2017-07-29 17:49:27 +0200
commitb97523be0db1b73e1877c3797bc54fa58ec27ed6 (patch)
tree7f32119a3a55118cea7b1b222818560592aab7c8
parent34cbce6fa75880f50071b932a29a33582fb94db8 (diff)
downloadbuilder-b97523be0db1b73e1877c3797bc54fa58ec27ed6.tar.xz
bin/get-package-updates: ignore *-unstable repositories (for now)
-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 bf516a8..14f63d9 100755
--- a/bin/get-package-updates
+++ b/bin/get-package-updates
@@ -179,7 +179,7 @@ for repo in ${repo_names}; do
# ignore i686
grep -v -- '-i686/PKGBUILD$' | \
# ignore staging and testing
- grep -v -- '[-/]\(staging\|testing\)-[^/]\+/PKGBUILD$' | \
+ grep -v -- '[-/]\(staging\|testing\|unstable\)-[^/]\+/PKGBUILD$' | \
sed 's|^\(\S\+\) \(.\)\t\([^/]\+\)/repos/\([^/]\+\)-[^/-]\+/PKGBUILD$|\2 \3 \1 \4|'
done | \
sort -u | \