mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Compilers will include Reason when for no match in output
This commit is contained in:
parent
d1049aaefe
commit
526fa114dc
@ -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…
Reference in New Issue
Block a user