From 5de6084e50d57944a61ef5da1d9141d49624c349 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 15 May 2014 08:12:44 +0200 Subject: [PATCH] Don't check scripts with pyroma --- scripts/run_checks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run_checks.py b/scripts/run_checks.py index e8384426c..328e95dcf 100755 --- a/scripts/run_checks.py +++ b/scripts/run_checks.py @@ -83,6 +83,8 @@ def run(name, target, args=None): status_key = '{}_{}'.format(name, target) if name != 'pyroma': args.append(target) + elif name == 'pyroma' and target != 'qutebrowser': + return if args is not None: sys.argv += args print("------ {} ------".format(name))