diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-09-25 16:36:11 -0400 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-09-25 16:36:11 -0400 |
| commit | cdb60b5c4c16b02ee430092c3a0b80fbad72845b (patch) | |
| tree | c22e4f8f1db97c5793c4ba7c61dd794b399ee8c4 /MediaBrowser.Common.Implementations/Updates | |
| parent | 71dd00ddfe0e30283b61b45d9b5aa784fd564b74 (diff) | |
New compression lib in ApplicationUpdater.cs
Diffstat (limited to 'MediaBrowser.Common.Implementations/Updates')
| -rw-r--r-- | MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs index c01430026..4a15f452a 100644 --- a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs +++ b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs @@ -38,8 +38,8 @@ namespace MediaBrowser.Common.Implementations.Updates // Our updater needs SS and ionic source = Path.Combine(appPaths.ProgramSystemPath, "ServiceStack.Text.dll"); File.Copy(source, Path.Combine(Path.GetTempPath(), "ServiceStack.Text.dll"), true); - source = Path.Combine(appPaths.ProgramSystemPath, "Ionic.Zip.dll"); - File.Copy(source, Path.Combine(Path.GetTempPath(), "Ionic.Zip.dll"), true); + source = Path.Combine(appPaths.ProgramSystemPath, "SharpCompress.dll"); + File.Copy(source, Path.Combine(Path.GetTempPath(), "SharpCompress.dll"), true); Process.Start(tempUpdater, string.Format("product={0} archive=\"{1}\" caller={2} pismo=false version={3}", product, archive, Process.GetCurrentProcess().Id, version)); // That's it. The installer will do the work once we exit |
