1
0
mirror of https://github.com/nushell/nushell.git synced 2025-04-07 18:55:30 +02:00

Fix wrong path separator ()

This commit is contained in:
Nathan Thomas 2021-07-24 06:42:50 -07:00 committed by GitHub
parent 0f9e55dac6
commit e514204db0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,9 +15,9 @@ pub const NATIVE_PATH_ENV_VAR: &str = "Path";
pub const NATIVE_PATH_ENV_VAR: &str = "PATH";
#[cfg(windows)]
pub const NATIVE_PATH_ENV_SEPARATOR: char = ':';
#[cfg(not(windows))]
pub const NATIVE_PATH_ENV_SEPARATOR: char = ';';
#[cfg(not(windows))]
pub const NATIVE_PATH_ENV_SEPARATOR: char = ':';
impl Outcome {
pub fn new(out: String, err: String) -> Outcome {