diff --git a/build.py b/build.py index 931ab74..3331331 100755 --- a/build.py +++ b/build.py @@ -146,8 +146,10 @@ def docker_buildx(repository: str, tags: list[str], build_platforms: list[Docker *[t for label in labels for t in ("--tag", label)], "--pull", "--push", directory] print(" ".join(command)) - process = subprocess.run(command, stderr=subprocess.PIPE) + process = subprocess.run(command, stderr=subprocess.PIPE, stdout=subprocess.PIPE) if process.returncode != 0: + output = process.stdout.decode('utf-8') + print(output) error = process.stderr.decode('utf-8') raise Exception(error)