Add missing newline when logging failed makechrootpkg invocation

This commit is contained in:
Martchus 2021-02-13 12:28:42 +01:00
parent 40d99e3bf0
commit 3fe15fb081
1 changed files with 2 additions and 2 deletions

View File

@ -701,8 +701,8 @@ void ConductBuild::enqueueMakechrootpkg(const BatchProcessingSession::SharedPoin
{
auto lock = lockToRead();
auto errorMessage = formattedPhraseString(Phrases::ErrorMessage) % "Unable to start build of " % *packageName
% formattedPhraseString(Phrases::End) % "-> reason: "
+ m_buildProgress.progressByPackage[*packageName].error;
% formattedPhraseString(Phrases::End) % "-> reason: " % m_buildProgress.progressByPackage[*packageName].error
+ '\n';
lock.unlock();
m_buildAction->log()(std::move(errorMessage));
}