diff options
-rw-r--r-- | dependencies.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dependencies.py b/dependencies.py index c3af8f0..4f7c1d4 100644 --- a/dependencies.py +++ b/dependencies.py @@ -132,6 +132,10 @@ class ExternalProgram(): self.fullpath = fullpath else: self.fullpath = shutil.which(name) + if self.found(): + print('Program %s found: YES (%s)' % (name, self.fullpath)) + else: + print('Program %s found: NO' % name) def found(self): return self.fullpath is not None |