aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs
diff options
context:
space:
mode:
authorEric Reed <ebr@mediabrowser3.com>2013-03-13 08:51:33 -0400
committerEric Reed <ebr@mediabrowser3.com>2013-03-13 08:51:33 -0400
commit13140003a66d5ebd24874bde8ae3edafd92d421a (patch)
treebc5c097034d8f605211c3e7bd8f120670d045b6c /MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs
parentff55da9029f8b18343dbf65ca2afa643b6e0877f (diff)
Don't install pismo during update #47
Diffstat (limited to 'MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs')
-rw-r--r--MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs
index 00e232e44..7ab574547 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(target, string.Format("product={0} archive=\"{1}\" caller={2}", product, archive, Process.GetCurrentProcess().Id));
+ Process.Start(target, string.Format("product={0} archive=\"{1}\" caller={2} pismo=false", product, archive, Process.GetCurrentProcess().Id));
// That's it. The installer will do the work once we exit
}