Exclude all hidden directories.

This commit is contained in:
H Paterson 2020-03-21 18:52:00 +13:00 committed by GitHub
parent 346d11f5e0
commit 497a900f21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import std.array : appender, uninitializedArray;
import std.stdio : stdin, stderr, File;
import std.conv : to;
import std.encoding : BOM, BOMSeq, EncodingException, getBOM;
import std.path : dirSeparator;
import std.format : format;
import std.file : exists, read;
@ -105,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('.git'))
if (isFileSafe(item) && (item.endsWith(`.d`) || item.endsWith(`.di`)) && !item.find(dirSeparator ~ '.'))
rVal ~= item;
else
continue;