Skip to content

Commit ce0d88a

Browse files
committed
[update] fix config path.
1 parent 71fe7f2 commit ce0d88a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ext_components/StackFlow/stackflow/StackFlowUtil.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ std::list<std::string> StackFlows::get_config_file_paths(const std::string &base
273273
std::list<std::string> config_file_paths;
274274
config_file_paths.push_back(std::string("./") + mode_name + ".json");
275275
config_file_paths.push_back(std::string("./asr_mode_") + mode_name + ".json");
276-
config_file_paths.push_back((*base_path) + "../share/" + mode_name + ".json");
277-
config_file_paths.push_back((*base_path) + "../share/asr_mode_" + mode_name + ".json");
276+
config_file_paths.push_back((*base_path) + "/../share/" + mode_name + ".json");
277+
config_file_paths.push_back((*base_path) + "/../share/asr_mode_" + mode_name + ".json");
278278
config_file_paths.push_back((*base_path) + mode_name + ".json");
279279
config_file_paths.push_back((*base_path) + "asr_mode_" + mode_name + ".json");
280280
return config_file_paths;

0 commit comments

Comments
 (0)