Skip to content
Snippets Groups Projects
Commit 382074e0 authored by stratact's avatar stratact
Browse files

Fix glob expansion bug and refactor

parent da80190a
No related branches found
No related tags found
1 merge request!871Fix glob expansion bug and refactor
...@@ -122,7 +122,10 @@ where ...@@ -122,7 +122,10 @@ where
for element in split_start.skip(skip) { for element in split_start.skip(skip) {
string.extend_from_slice(element.as_bytes()); string.extend_from_slice(element.as_bytes());
string.extend_from_slice(b"*/");
if element != ".." && element != "." {
string.extend_from_slice(b"*/");
}
} }
string.pop(); // pop out the last '/' character string.pop(); // pop out the last '/' character
...@@ -131,10 +134,11 @@ where ...@@ -131,10 +134,11 @@ where
let globs = glob(string).ok().and_then(|completions| { let globs = glob(string).ok().and_then(|completions| {
let mut completions = completions let mut completions = completions
.filter_map(Result::ok) .filter_map(Result::ok)
.map(|x| x.to_string_lossy().into_owned()); .map(|x| x.to_string_lossy().into_owned())
.peekable();
if let Some(first) = completions.next() { if completions.peek().is_some() {
Some(iter::once(first).chain(completions)) Some(completions)
} else { } else {
None None
} }
......
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