From e892aad3f665002998abd1632115fc460134f7a7 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 13 Apr 2023 08:15:56 -0500 Subject: [PATCH] change include dirs separator to colon (#8873) # Description This PR changes the include_path separator from a semicolon to a colon. It seems that semicolon is not parsed well as an argument to nushell. # User-Facing Changes # Tests + Formatting # After Submitting --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 3c60df4ef..cbc78714d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -141,7 +141,7 @@ fn main() -> Result<()> { let span = include_path.span; let vals: Vec<_> = include_path .item - .split(';') + .split(':') .map(|x| Value::String { val: x.trim().to_string(), span,