diff options
| author | ScottIsAFool <scottisafool@live.co.uk> | 2014-02-28 22:46:06 +0000 |
|---|---|---|
| committer | ScottIsAFool <scottisafool@live.co.uk> | 2014-02-28 22:46:06 +0000 |
| commit | 604f971477da4dca5247f7d531323175ad044150 (patch) | |
| tree | 4a69a84276bd901dd25f4fb76637427e5d77dc21 | |
| parent | 31043e8f5dcd86332970bd3a3d96f76fe3593972 (diff) | |
| parent | 3bbb30f5ccf595aea8e9639d865135a00784f259 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
| -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 d5d721292..e24ff3064 100644 --- a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs +++ b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs @@ -47,7 +47,7 @@ namespace MediaBrowser.Common.Implementations.Updates File.Copy(source, Path.Combine(Path.GetTempPath(), "SharpCompress.dll"), true); logger.Info("Starting updater process."); - Process.Start(tempUpdater, string.Format("product={0} archive=\"{1}\" caller={2} pismo=false version={3} service={4} installpath={5}", product, archive, Process.GetCurrentProcess().Id, version, restartServiceName ?? string.Empty, appPaths.ProgramDataPath)); + Process.Start(tempUpdater, string.Format("product={0} archive=\"{1}\" caller={2} pismo=false version={3} service={4} installpath=\"{5}\"", product, archive, Process.GetCurrentProcess().Id, version, restartServiceName ?? string.Empty, appPaths.ProgramDataPath)); // That's it. The installer will do the work once we exit } |
