wrapper: debug-print docker build cmd

This commit is contained in:
InsanePrawn 2022-02-14 20:53:33 +01:00
parent 96cb6fc3f1
commit 1179cdf212

View file

@ -58,6 +58,7 @@ def wrap_docker():
'-t',
tag,
] + (['-q'] if not config.runtime['verbose'] else [])
logging.debug('Running docker cmd: ' + ' '.join(cmd))
result = subprocess.run(cmd, cwd=script_path, capture_output=True)
if result.returncode != 0:
logging.fatal('Failed to build docker image:\n' + result.stderr.decode())