We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc805b commit e803efaCopy full SHA for e803efa
1 file changed
src-tauri/src/windows.rs
@@ -97,15 +97,13 @@ pub fn convert(
97
let real_path = if replace_backslash {
98
path.replace('\\', "\\\\")
99
} else {
100
- path
+ path.to_string()
101
};
102
cmd.arg(real_path);
103
104
#[cfg(windows)]
105
cmd.creation_flags(0x08000000); // CREATE_NO_WINDOW
106
107
- println!("Executing command: {:?}", cmd);
108
-
109
let output = cmd
110
.output()
111
.map_err(|e| format!("Error executing wsl.exe: {}", e))?;
0 commit comments