Integrating templating into rawfile pipeline

This commit is contained in:
Jan
2022-09-06 00:12:34 +02:00
parent f574204e61
commit 6a45031c96
2 changed files with 7 additions and 2 deletions

View File

@ -288,7 +288,7 @@ namespace templating
if (m_write_output_to_file)
return false;
m_output_file = fileName;
m_output_file = (m_output_directory / fileName).string();
m_output_stream = std::ofstream(m_output_file);
if (!m_output_stream.is_open())
{