mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Replace container output command prefix ">>>"
In the junitxml this prefix would look ugly (">>>") because it has to escape any non-xml tags.
This commit is contained in:
parent
48b2e7bc3c
commit
eb16285790
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ class DangerzoneConverter:
|
|||
|
||||
# Log command to debug log so we can trace back which errors
|
||||
# are from each command
|
||||
self.captured_output += f">>> {' '.join(args)}\n".encode()
|
||||
self.captured_output += f"[COMMAND] {' '.join(args)}\n".encode()
|
||||
|
||||
assert proc.stdout is not None
|
||||
assert proc.stderr is not None
|
||||
|
|
Loading…
Reference in a new issue