mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #343 from erri120/no-match-reason
Compilers will include Reason when for no match in output
This commit is contained in:
commit
de3c810b32
@ -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.");
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user