Remove not found fragment
This commit is contained in:
@@ -42,12 +42,13 @@ namespace DockerGenerator
|
|||||||
var serializer = new SerializerBuilder().Build();
|
var serializer = new SerializerBuilder().Build();
|
||||||
|
|
||||||
Console.WriteLine($"With fragments:");
|
Console.WriteLine($"With fragments:");
|
||||||
foreach (var fragment in Fragments)
|
foreach (var fragment in Fragments.ToList())
|
||||||
{
|
{
|
||||||
var fragmentPath = GetFragmentLocation(fragment);
|
var fragmentPath = GetFragmentLocation(fragment);
|
||||||
if (!File.Exists(fragmentPath))
|
if (!File.Exists(fragmentPath))
|
||||||
{
|
{
|
||||||
Console.WriteLine($"\t{fragment} not found in {fragmentPath}, ignoring...");
|
Console.WriteLine($"\t{fragment} not found in {fragmentPath}, ignoring...");
|
||||||
|
Fragments.Remove(fragment);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user