Skip to content

Commit

Permalink
File System Workspace: do not strip ANSI codes when processing build …
Browse files Browse the repository at this point in the history
…output

Signed-off-by: Eran Ifrah <[email protected]>
  • Loading branch information
eranif committed Dec 27, 2024
1 parent 8edfa1b commit e61277f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugin/FileSystemWorkspace/clFileSystemWorkspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ void clFileSystemWorkspace::OnBuildProcessTerminated(clProcessEvent& event)
void clFileSystemWorkspace::OnBuildProcessOutput(clProcessEvent& event)
{
if (event.GetProcess() == m_buildProcess) {
DoPrintBuildMessage(event.GetOutput());
DoPrintBuildMessage(event.GetOutputRaw());
}
}

Expand Down

0 comments on commit e61277f

Please sign in to comment.