Skip to content
Snippets Groups Projects
Commit 29bcedaf authored by Merov Linden's avatar Merov Linden
Browse files

STORM-987 : Fix the creation of images in local dir

parent 17186d6d
No related branches found
No related tags found
No related merge requests found
...@@ -223,7 +223,15 @@ void store_output_file(std::list<std::string> &output_filenames, std::list<std:: ...@@ -223,7 +223,15 @@ void store_output_file(std::list<std::string> &output_filenames, std::list<std::
{ {
dir = gDirUtilp->getDirName(*in_file); dir = gDirUtilp->getDirName(*in_file);
name = gDirUtilp->getBaseFileName(*in_file,true); name = gDirUtilp->getBaseFileName(*in_file,true);
std::string file_name = dir + delim + name + "." + exten; std::string file_name;
if (!dir.empty())
{
file_name = dir + delim + name + "." + exten;
}
else
{
file_name = name + "." + exten;
}
output_filenames.push_back(file_name); output_filenames.push_back(file_name);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment