Skip to content

Commit

Permalink
Fix path for ts-numbers in output dir (#2484)
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin authored Nov 4, 2024
1 parent 39708a6 commit 2f4896e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/antares/study/parts/common/cluster_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void ClusterList<ClusterT>::storeTimeseriesNumbers(Solver::IResultWriter& writer

for (auto& cluster: each_enabled())
{
fs::path path = fs::path(cluster->parentArea->id.c_str())
fs::path path = basePath / cluster->parentArea->id.c_str()
/ std::string(cluster->id() + ".txt");

ts_content.clear(); // We must clear ts_content here, since saveToBuffer does not do it.
Expand Down

0 comments on commit 2f4896e

Please sign in to comment.