From 17d5bf6ce51801378cf374cd87bb6e2c12f45978 Mon Sep 17 00:00:00 2001 From: cryshado Date: Tue, 1 Aug 2023 23:43:08 -0400 Subject: [PATCH] split fiftpath with ':' instead of ',' --- cli/src/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/env.rs b/cli/src/env.rs index cc5214e..51fb85a 100644 --- a/cli/src/env.rs +++ b/cli/src/env.rs @@ -14,7 +14,7 @@ impl SystemEnvironment { let include_dirs = if dirs.is_empty() { Vec::new() } else { - dirs.split(',') + dirs.split(':') .map(|item| PathBuf::from(item.trim())) .collect() };