Skip to content

Commit

Permalink
Ignore non-.Net DLLs instead of deleting in plugin prune
Browse files Browse the repository at this point in the history
  • Loading branch information
James A Sutherland committed May 19, 2023
1 parent 64eb36e commit 8bd0fed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ public override void Execute()
}
catch (Exception exception)
{
logger.Warn($"Deleting corrupt or non-.Net file {e.FullName} due to {exception.Message}");
e.Delete();
logger.Warn($"Ignoring corrupt or non-.Net file {e.FullName} due to {exception.Message}");
//e.Delete();
continue;
}

Expand Down Expand Up @@ -127,4 +127,4 @@ public override void Execute()

BasicActivator?.Show("Prune Completed");
}
}
}

0 comments on commit 8bd0fed

Please sign in to comment.