Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts/check-system
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check-system')
-rwxr-xr-xscripts/check-system13
1 files changed, 5 insertions, 8 deletions
diff --git a/scripts/check-system b/scripts/check-system
index 9023ad9..bb76d93 100755
--- a/scripts/check-system
+++ b/scripts/check-system
@@ -100,14 +100,11 @@ def run_checks(distro, checks, packages):
if checker(check["check"]):
check_name = check.get("check_name", check["check"])
if distro in packages[check_name]:
- package_list = packages[check_name][distro]
- if not isinstance(package_list, list):
- package_list = [package_list]
-
- for package in package_list:
- # Might be none, if so skip on this distro
- if package and package not in packages:
- to_install.append(package)
+ package = packages[check_name][distro]
+
+ # Might be none, if so skip on this distro
+ if package and package not in packages:
+ to_install.append(package)
else:
failed_checks.append(check)