Skip to content

Commit 16ab3b6

Browse files
committed
Fix it doesn't update files that doesn't exists
1 parent ae30af6 commit 16ab3b6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/UnturnedRedistUpdateTool/RedistUpdater.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ public RedistUpdater(string managedDir, string redistPath, List<string> publiciz
4747
{
4848
var managedFilePath = file.FullName;
4949
var redistFilePath = Path.Combine(_redistPath, file.Name);
50-
if (!File.Exists(redistFilePath))
51-
continue;
5250
if (_publicizeAssemblies.Any(x => x == file.Name))
5351
{
5452
AssemblyPublicizer.Publicize(managedFilePath, redistFilePath);

0 commit comments

Comments
 (0)