summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/contrib/oe-build-perf-report-email.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/contrib/oe-build-perf-report-email.py b/scripts/contrib/oe-build-perf-report-email.py
index c900720f6e..7192113c28 100755
--- a/scripts/contrib/oe-build-perf-report-email.py
+++ b/scripts/contrib/oe-build-perf-report-email.py
@@ -27,17 +27,6 @@ logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
27log = logging.getLogger('oe-build-perf-report') 27log = logging.getLogger('oe-build-perf-report')
28 28
29 29
30def check_utils():
31 """Check that all needed utils are installed in the system"""
32 missing = []
33 for cmd in ('phantomjs', 'optipng'):
34 if not shutil.which(cmd):
35 missing.append(cmd)
36 if missing:
37 log.error("The following tools are missing: %s", ' '.join(missing))
38 sys.exit(1)
39
40
41def parse_args(argv): 30def parse_args(argv):
42 """Parse command line arguments""" 31 """Parse command line arguments"""
43 description = """Email build perf test report""" 32 description = """Email build perf test report"""
@@ -101,8 +90,6 @@ def main(argv=None):
101 if args.debug: 90 if args.debug:
102 log.setLevel(logging.DEBUG) 91 log.setLevel(logging.DEBUG)
103 92
104 check_utils()
105
106 if args.outdir: 93 if args.outdir:
107 outdir = args.outdir 94 outdir = args.outdir
108 if not os.path.exists(outdir): 95 if not os.path.exists(outdir):