From fa1159410383b705e35ba3a44255316fb7dda418 Mon Sep 17 00:00:00 2001 From: Johnny Nguyen Date: Fri, 14 Jul 2023 17:00:59 -0400 Subject: [PATCH] fix(cli): support for spaces in config path --- komorebic/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komorebic/src/main.rs b/komorebic/src/main.rs index 5e709045..7cb24370 100644 --- a/komorebic/src/main.rs +++ b/komorebic/src/main.rs @@ -1426,7 +1426,7 @@ fn main() -> Result<()> { } flags.push(format!( - "'--config={}'", + "'--config=\"{}\"'", path.as_os_str() .to_string_lossy() .trim_start_matches(r#"\\?\"#),