diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-11 12:55:00 -0400 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-11 12:55:00 -0400 |
| commit | 61b5f66f20f1e62c09442c0758c55f6a630526db (patch) | |
| tree | a678c851c2a5b24582e52641092d11f5068bb233 /MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs | |
| parent | fe91772f18dada23d9f1b28d3816a30d0f21448b (diff) | |
| parent | f8261ebdb5be9ff6c69ee88a0303f4d09846b307 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs index 3b06f2006..00e232e44 100644 --- a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs +++ b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs @@ -24,7 +24,7 @@ namespace MediaBrowser.Common.Implementations.Updates var target = Path.Combine(Path.GetTempPath(), UpdaterExe); var product = app == MBApplication.MBTheater ? "mbt" : "server"; File.Copy(source, target, true); - Process.Start(UpdaterExe, string.Format("product={0} archive=\"{1}\" caller={2}", product, archive, Process.GetCurrentProcess().Id)); + Process.Start(target, string.Format("product={0} archive=\"{1}\" caller={2}", product, archive, Process.GetCurrentProcess().Id)); // That's it. The installer will do the work once we exit } |
