Fix find function

Use `canFind`, not `find` - which returns the post-string, not a boolean.
This commit is contained in:
H Paterson 2020-03-21 18:56:58 +13:00 committed by GitHub
parent 497a900f21
commit 7f10a0598a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ string[] expandArgs(string[] args)
else else
foreach (item; dirEntries(arg, SpanMode.breadth).map!(a => a.name)) 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; rVal ~= item;
else else
continue; continue;