From 14e85f28f9f1bfed8d2ae52385ec06e2d49853ad Mon Sep 17 00:00:00 2001 From: Vasiliy Kostin <38539456+bacek97@users.noreply.github.com> Date: Mon, 11 May 2026 19:04:42 +0300 Subject: [PATCH] fix: malformed file paths on Windows --- rs_lib/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs_lib/src/lib.rs b/rs_lib/src/lib.rs index 99e46e5..c242024 100644 --- a/rs_lib/src/lib.rs +++ b/rs_lib/src/lib.rs @@ -211,7 +211,7 @@ fn collect_files( let collected: Vec = collector .collect_file_patterns(real_sys, &files) .into_iter() - .map(|path| path.to_string_lossy().to_string()) + .map(|path| sys_traits::impls::wasm_path_to_str(&path).into_owned()) .collect(); debug_log(