Workaround differences in the GHA Ubuntu 18.04 environment compared to the Travis CI Ubuntu 16.04 environment.

This commit is contained in:
Ximon Eighteen
2022-01-25 00:37:01 +01:00
committed by Lorenzo Bolla
parent beb9d43f4d
commit 8e309b57b3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ class DotFinder(object):
def find_dot(self, executables):
for executable in executables:
try:
subprocess.check_output([executable])
subprocess.check_output([executable, "-V"])
return executable
except Exception:
pass