Skip to content

Commit

Permalink
Merge pull request Ericsson#2286 from bruntib/logger_newline
Browse files Browse the repository at this point in the history
Omit extra newlines while logging build commands
  • Loading branch information
Gyorgy Orban authored Aug 26, 2019
2 parents 4d1edb0 + a2f6d98 commit 046409b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzer/codechecker_analyzer/buildlog/build_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def execute_buildcmd(command, silent=False, env=None, cwd=None):
if not line and proc.poll() is not None:
break
if not silent:
print(line)
sys.stdout.write(line)

return proc.returncode

Expand Down

0 comments on commit 046409b

Please sign in to comment.