Run uninstall script. Run scripts safely without throwing exceptions

This commit is contained in:
Pat Hartl 2023-01-15 01:19:03 -06:00
parent d39c75d0ab
commit b689abb8bc
2 changed files with 13 additions and 2 deletions

View file

@ -32,7 +32,6 @@ namespace LANCommander.PlaynitePlugin
public override void Install(InstallActionArgs args)
{
var tempPath = System.IO.Path.GetTempFileName();
var gameId = Guid.Parse(Game.GameId);
var game = Plugin.LANCommander.GetGame(gameId);
@ -50,7 +49,11 @@ namespace LANCommander.PlaynitePlugin
File.WriteAllText(Path.Combine(installDirectory, "_manifest.yml"), GetManifest(gameId));
PowerShellRuntime.RunInstallScript(PlayniteGame);
try
{
PowerShellRuntime.RunInstallScript(PlayniteGame);
}
catch { }
InvokeOnInstalled(new GameInstalledEventArgs(installInfo));

View file

@ -17,15 +17,23 @@ namespace LANCommander.PlaynitePlugin
public class LANCommanderUninstallController : UninstallController
{
private LANCommanderLibraryPlugin Plugin;
private PowerShellRuntime PowerShellRuntime;
public LANCommanderUninstallController(LANCommanderLibraryPlugin plugin, Game game) : base(game)
{
Name = "Uninstall LANCommander Game";
Plugin = plugin;
PowerShellRuntime = new PowerShellRuntime();
}
public override void Uninstall(UninstallActionArgs args)
{
try
{
PowerShellRuntime.RunUninstallScript(Game);
}
catch { }
if (!String.IsNullOrWhiteSpace(Game.InstallDirectory) && Directory.Exists(Game.InstallDirectory))
Directory.Delete(Game.InstallDirectory, true);