mirror of
https://github.com/Rayerd/dfl.git
synced 2025-04-26 13:09:57 +03:00
DFLEXE: Update to D2.068
small fix of DFLEXE for @ safe
This commit is contained in:
parent
75a0eb40d6
commit
ca83d74d67
1 changed files with 3 additions and 3 deletions
|
@ -801,9 +801,9 @@ int main(/+ string[] args +/)
|
||||||
|
|
||||||
string[] dflcs;
|
string[] dflcs;
|
||||||
if(!optNoDflc)
|
if(!optNoDflc)
|
||||||
foreach(filename; dirEntries(dflsrcdir, SpanMode.shallow))
|
foreach(de; dirEntries(dflsrcdir, SpanMode.shallow))
|
||||||
if(globMatch(filename, "dflc_*.bat"))
|
if(globMatch(de.name, "dflc_*.bat"))
|
||||||
dflcs ~= filename;
|
dflcs ~= de.name;
|
||||||
|
|
||||||
//@
|
//@
|
||||||
scope batf = new BufferedFile(batfilepath, FileMode.OutNew);
|
scope batf = new BufferedFile(batfilepath, FileMode.OutNew);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue