Skip to content
Snippets Groups Projects
Commit 5bbc65d5 authored by Fabian Würfl's avatar Fabian Würfl
Browse files

Fix syntax error in src/shell/variables.rs

introduced by c1fdd5e8
parent c1fdd5e8
No related branches found
No related tags found
No related merge requests found
...@@ -200,7 +200,7 @@ impl Variables { ...@@ -200,7 +200,7 @@ impl Variables {
eprintln!("ion: {} is not a valid color", name); eprintln!("ion: {} is not a valid color", name);
None None
} }
} },
"env" => env::var(variable).map(Into::into).ok(), "env" => env::var(variable).map(Into::into).ok(),
_ => { _ => {
// Attempt to obtain the given namespace from our lazily-generated map of namespaces. // Attempt to obtain the given namespace from our lazily-generated map of namespaces.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment