Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 549f1ef

Browse files
committed
update
1 parent 7b5f2a1 commit 549f1ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

engine/services/engine_service.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ cpp::result<void, std::string> EngineService::DownloadEngineV2(
230230
return cpp::fail("Not found variant: " + variant_name);
231231
}
232232

233-
auto engine_folder_path = file_manager_utils::GetEngineFolderPath(engine);
233+
auto engine_folder_path =
234+
file_manager_utils::GetEnginesContainerPath() / engine;
234235
auto variant_folder_path = engine_folder_path / variant_name / version;
235236
auto variant_path = variant_folder_path / merged_variant_name;
236-
std::filesystem::create_directories(
237-
variant_folder_path); // TODO: move this to other place
237+
std::filesystem::create_directories(variant_folder_path);
238238
CLI_LOG("variant_folder_path: " + variant_folder_path.string());
239239

240240
auto on_finished = [](const DownloadTask& finishedTask) {

0 commit comments

Comments
 (0)