aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/benchmark.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/benchmark.py b/src/benchmark.py
index 87ec8c2..c01a41a 100644
--- a/src/benchmark.py
+++ b/src/benchmark.py
@@ -93,6 +93,7 @@ class Benchmark (object):
# Search for file
if fpath:
if not is_exe(r):
+ print("requirement:", r, "not found")
return False
# Search in PATH
else:
@@ -103,6 +104,7 @@ class Benchmark (object):
found = True
if not found:
+ print("requirement:", r, "not found")
return False
return True