Skip to content

Commit 5831ac8

Browse files
committed
Fixes issue in results path
1 parent 981b96a commit 5831ac8

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/Launcher.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ Launcher::Launcher(const std::string& inputFile, const std::string& exportFolder
6363
void Launcher::run()
6464
{
6565
std::cout << "Loading input file: " << inputFile_ << std::endl;
66-
const std::string outputPrefix = extractCaseName(inputFile_) + ".";
67-
const std::string driverExportFolder = ensureTrailingSlash(exportFolder_) + outputPrefix;
66+
const std::string driverExportFolder = ensureTrailingSlash(exportFolder_);
6867

6968
if (isAdaptedJson(inputFile_)) {
7069
auto driver = Driver::loadFromAdaptedFile(inputFile_);

0 commit comments

Comments
 (0)