nicolas.dorier
5 years ago
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE
1 changed files with
3 additions and
1 deletions
-
docker-compose-generator/src/DockerComposeDefinition.cs
|
|
@ -106,7 +106,9 @@ namespace DockerGenerator |
|
|
|
unprocessedFragments.Remove(fragment); |
|
|
|
} |
|
|
|
|
|
|
|
foreach (var fragment in requiredFragments.Concat(recommendedFragments).Where(f => !processedFragments.Contains(f))) |
|
|
|
foreach (var fragment in requiredFragments |
|
|
|
.Concat(recommendedFragments) |
|
|
|
.Where(f => !processedFragments.Contains(f) && !fragmentsNotFound.Contains(f))) |
|
|
|
{ |
|
|
|
unprocessedFragments.Add(fragment); |
|
|
|
} |
|
|
|