Skip to content

Commit

Permalink
remove unnecessary deucalion DLLs
Browse files Browse the repository at this point in the history
  • Loading branch information
marzent committed Aug 19, 2024
1 parent 19502f4 commit 7832a51
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion FetchDependencies/FetchDependencies.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ public void GetFfxivPlugin()
{
var pluginZipPath = Path.Combine(DependenciesDir, "FFXIV_ACT_Plugin.zip");
var pluginPath = Path.Combine(DependenciesDir, "FFXIV_ACT_Plugin.dll");

var deucalionPath = Path.Combine(DependenciesDir, "deucalion-1.1.0.distrib.dll");

if (!NeedsUpdate(pluginPath))
return;

Expand All @@ -47,6 +48,9 @@ public void GetFfxivPlugin()
ZipFile.ExtractToDirectory(pluginZipPath, DependenciesDir, true);
}
File.Delete(pluginZipPath);

foreach (var deucalionDll in Directory.GetFiles(DependenciesDir, "deucalion*.dll"))
File.Delete(deucalionDll);
}

var patcher = new Patcher(PluginVersion, DependenciesDir);
Expand Down

0 comments on commit 7832a51

Please sign in to comment.