Skip to content

Commit

Permalink
Fix bug in release check script
Browse files Browse the repository at this point in the history
Fix bug in release script causing it to failing to display build and
test output in case of an error.

Signed-off-by: Mattias Rönnblom <[email protected]>
  • Loading branch information
m-ronnblom committed Dec 22, 2023
1 parent 1389965 commit 11a84a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/check-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def run(cmd, exit_on_error=True):

if res.returncode != 0:
stdout.seek(0)
output += stdout.read().decode('utf-8')
output = stdout.read().decode('utf-8')
sys.stderr.write(output)

if exit_on_error:
Expand Down

0 comments on commit 11a84a5

Please sign in to comment.