From 8e9a5b387a76f31796837e1000188d1152bd4b00 Mon Sep 17 00:00:00 2001 From: François Charette Date: Wed, 6 May 2009 12:32:43 -0700 Subject: check_packages.py: Add 'any' arch support Signed-off-by: Aaron Griffin --- cron-jobs/check_archlinux/check_packages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cron-jobs/check_archlinux/check_packages.py') diff --git a/cron-jobs/check_archlinux/check_packages.py b/cron-jobs/check_archlinux/check_packages.py index 0392368..9bdd9c1 100755 --- a/cron-jobs/check_archlinux/check_packages.py +++ b/cron-jobs/check_archlinux/check_packages.py @@ -194,7 +194,7 @@ def get_repo_hierarchy(repo): return ['core','extra','community'] def verify_archs(name,archs): - valid_archs = ['i686', 'x86_64'] + valid_archs = ['any', 'i686', 'x86_64'] invalid_archs = [] for arch in archs: if arch not in valid_archs: @@ -292,7 +292,7 @@ def print_usage(): print "Options:" print " --abs-tree= Check the specified tree (default : /var/abs)" print " --repos= Check the specified repos (default : core,extra)" - print " --arch= Check the specified arch (default : i686)" + print " --arch= Check the specified arch (default : i686)" print " -h, --help Show this help and exit" print "" print "Examples:" -- cgit v1.2.3-24-g4f1b