aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Installer/MainWindow.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Installer/MainWindow.xaml.cs')
-rw-r--r--MediaBrowser.Installer/MainWindow.xaml.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/MediaBrowser.Installer/MainWindow.xaml.cs b/MediaBrowser.Installer/MainWindow.xaml.cs
index 6f64ded86..a85a0cb9a 100644
--- a/MediaBrowser.Installer/MainWindow.xaml.cs
+++ b/MediaBrowser.Installer/MainWindow.xaml.cs
@@ -212,6 +212,19 @@ namespace MediaBrowser.Installer
try
{
ExtractPackage(archive);
+ // We're done with it so delete it (this is necessary for update operations)
+ try
+ {
+ File.Delete(archive);
+ }
+ catch (FileNotFoundException)
+ {
+ }
+ catch (Exception e)
+ {
+
+ SystemClose("Error Removing Archive - " + e.GetType().FullName + "\n\n" + e.Message);
+ }
}
catch (Exception e)
{