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

Commit ceeaf51

Browse files
committed
fix build windows
1 parent c3837c5 commit ceeaf51

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

engine/cli/commands/cortex_upd_cmd.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,9 @@ std::optional<std::string> CheckNewUpdate(
178178
auto result = config_yaml_utils::DumpYamlConfig(
179179
config, file_manager_utils::GetConfigurationPath().string());
180180
if (result.has_error()) {
181-
CTL_ERR("Error update " << file_manager_utils::GetConfigurationPath()
182-
<< result.error());
181+
CTL_ERR("Error update "
182+
<< file_manager_utils::GetConfigurationPath().string()
183+
<< result.error());
183184
}
184185
if (current_version != latest_version) {
185186
return latest_version;

0 commit comments

Comments
 (0)