Compilers will include Reason when for no match in output

This commit is contained in:
erri120 2020-01-04 19:18:26 +01:00
parent d1049aaefe
commit 526fa114dc
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
2 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ namespace Wabbajack.Lib
if (nomatch.Any())
{
foreach (var file in nomatch)
Info($" {file.To}");
Info($" {file.To} - {file.Reason}");
if (IgnoreMissingFiles)
{
Info("Continuing even though files were missing at the request of the user.");

View File

@ -217,7 +217,7 @@ namespace Wabbajack.Lib
IEnumerable<NoMatch> noMatch = results.OfType<NoMatch>().ToList();
Info($"No match for {noMatch.Count()} files");
foreach (var file in noMatch)
Info($" {file.To}");
Info($" {file.To} - {file.Reason}");
if (noMatch.Any())
{
if (IgnoreMissingFiles)