Exclude all hidden directories.
This commit is contained in:
parent
346d11f5e0
commit
497a900f21
|
@ -4,6 +4,7 @@ import std.array : appender, uninitializedArray;
|
||||||
import std.stdio : stdin, stderr, File;
|
import std.stdio : stdin, stderr, File;
|
||||||
import std.conv : to;
|
import std.conv : to;
|
||||||
import std.encoding : BOM, BOMSeq, EncodingException, getBOM;
|
import std.encoding : BOM, BOMSeq, EncodingException, getBOM;
|
||||||
|
import std.path : dirSeparator;
|
||||||
import std.format : format;
|
import std.format : format;
|
||||||
import std.file : exists, read;
|
import std.file : exists, read;
|
||||||
|
|
||||||
|
@ -105,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('.git'))
|
if (isFileSafe(item) && (item.endsWith(`.d`) || item.endsWith(`.di`)) && !item.find(dirSeparator ~ '.'))
|
||||||
rVal ~= item;
|
rVal ~= item;
|
||||||
else
|
else
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue