diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp b/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp index 8fad8cae..9ba1ccff 100644 --- a/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp +++ b/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp @@ -580,7 +580,7 @@ auto BazelMsgFactory::DirectoryToString(bazel_re::Directory const& dir) noexcept "reading object infos from Directory failed"); return std::nullopt; } - return json.dump(2); + return json.dump(2) + "\n"; } catch (std::exception const& ex) { Logger::Log(LogLevel::Error, "dumping Directory to string failed with:\n{}", |