Lazy commit on frankie.

This commit is contained in:
James Downie 2025-07-17 07:56:31 +10:00
parent cc6c8f22b1
commit e4ccfb544b

View File

@ -110,10 +110,10 @@ def execute_command(command, cwd = None, dump_error = True):
print(f"Error executing command: {result.stderr.strip()}")
print(command)
return None
except subprocess.CalledProcessError as e:
except Exception as e:
if dump_error:
print(f"Error executing command: {e.stderr.strip()}")
print(command)
print(f"Error executing command: {command}")
print(e)
return None
def isFossil(cfg):