mirror of https://gitlab.com/basile.b/dexed.git
dastworx, skip invalid files
This commit is contained in:
parent
4cb04ac073
commit
cab5b83e40
|
@ -42,7 +42,8 @@ void main(string[] args)
|
||||||
source.put(buffer);
|
source.put(buffer);
|
||||||
if (!source.data.length)
|
if (!source.data.length)
|
||||||
{
|
{
|
||||||
files = args[1].splitter(pathSeparator).array;
|
import std.file: exists;
|
||||||
|
files = args[1].splitter(pathSeparator).filter!exists.array;
|
||||||
version(devel) writeln(files);
|
version(devel) writeln(files);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,8 +16,8 @@ import
|
||||||
* if the main is injected by a mixin template or by a string it is not detected,
|
* if the main is injected by a mixin template or by a string it is not detected,
|
||||||
* if the main is deactivated by a static condition neither.
|
* if the main is deactivated by a static condition neither.
|
||||||
*
|
*
|
||||||
* The result is used by to detect if the "-main" switch has to be passed to
|
* The result is used to determine if the "-main" switch has to be passed to
|
||||||
* the compiler.
|
* the compiler when a runnable module is executed or a module tested.
|
||||||
*/
|
*/
|
||||||
void detectMainFun(const(Module) mod)
|
void detectMainFun(const(Module) mod)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue