fix: normalize paths

This commit is contained in:
2025-12-17 02:58:23 +03:00
parent 1c2486d476
commit ef0854aa39
8 changed files with 38 additions and 26 deletions

View File

@@ -8,7 +8,7 @@ namespace clrsync::core::io
{
toml_file::toml_file(std::string path)
{
m_path = expand_user(path);
m_path = normalize_path(path).string();
}
Result<void> toml_file::parse()