Fix find function
Use `canFind`, not `find` - which returns the post-string, not a boolean.
This commit is contained in:
parent
497a900f21
commit
7f10a0598a
|
@ -106,7 +106,7 @@ string[] expandArgs(string[] args)
|
|||
else
|
||||
foreach (item; dirEntries(arg, SpanMode.breadth).map!(a => a.name))
|
||||
{
|
||||
if (isFileSafe(item) && (item.endsWith(`.d`) || item.endsWith(`.di`)) && !item.find(dirSeparator ~ '.'))
|
||||
if (isFileSafe(item) && (item.endsWith(`.d`) || item.endsWith(`.di`)) && !item.canFind(dirSeparator ~ '.'))
|
||||
rVal ~= item;
|
||||
else
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue