|
|
|
@ -178,8 +178,9 @@ namespace NzbDrone.Core.Update
|
|
|
|
|
{
|
|
|
|
|
var processId = _processProvider.GetCurrentProcess().Id.ToString();
|
|
|
|
|
var executingApplication = _runtimeInfo.ExecutingApplication;
|
|
|
|
|
|
|
|
|
|
return string.Join(" ", processId, updateSandboxFolder.TrimEnd(Path.DirectorySeparatorChar).WrapInQuotes(), executingApplication.WrapInQuotes(), _startupContext.PreservedArguments);
|
|
|
|
|
var args = string.Join(" ", processId, updateSandboxFolder.TrimEnd(Path.DirectorySeparatorChar).WrapInQuotes(), executingApplication.WrapInQuotes(), _startupContext.PreservedArguments);
|
|
|
|
|
_logger.Info("Updater Arguments: " + args);
|
|
|
|
|
return args;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void EnsureAppDataSafety()
|
|
|
|
|