Utils: use cleaned stdout all over the place again

Amends 5ee880ce5e

Change-Id: Ie0202db7d8455372c3697087d9571db6706b45a1
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
David Schulz
2022-06-17 14:17:14 +02:00
parent dcd3d9e717
commit 153ff77a6b
48 changed files with 145 additions and 145 deletions

View File

@@ -1449,8 +1449,8 @@ CvsResponse CvsPluginPrivate::runCvs(const FilePath &workingDirectory,
command.runCommand(proc, {executable, m_settings.addOptions(arguments)});
response.result = CvsResponse::OtherError;
response.stdErr = proc.stdErr();
response.stdOut = proc.stdOut();
response.stdErr = proc.cleanedStdErr();
response.stdOut = proc.cleanedStdOut();
switch (proc.result()) {
case ProcessResult::FinishedWithSuccess:
response.result = CvsResponse::Ok;