mirror of https://github.com/lidarr/Lidarr
Updating on mono
This commit is contained in:
parent
cdb595a3cd
commit
ddbcb883ca
|
@ -71,30 +71,33 @@ namespace NzbDrone.Update
|
|||
ProcessId = ParseProcessId(args[0])
|
||||
};
|
||||
|
||||
// if (args.Count() == 1)
|
||||
// {
|
||||
// return startupContext;
|
||||
// }
|
||||
//
|
||||
// else if (args.Count() == 3)
|
||||
// {
|
||||
// startupContext.UpdateLocation = args[1];
|
||||
// startupContext.ExecutingApplication = args[2];
|
||||
// }
|
||||
//
|
||||
// else
|
||||
// {
|
||||
// logger.Debug("Arguments:");
|
||||
//
|
||||
// foreach (var arg in args)
|
||||
// {
|
||||
// logger.Debug(" {0}", arg);
|
||||
// }
|
||||
//
|
||||
// var message = String.Format("Number of arguments are unexpected, expected: 3, found: {0}", args.Count());
|
||||
//
|
||||
// throw new ArgumentOutOfRangeException("args", message);
|
||||
// }
|
||||
if (OsInfo.IsMono)
|
||||
{
|
||||
if (args.Count() == 1)
|
||||
{
|
||||
return startupContext;
|
||||
}
|
||||
|
||||
else if (args.Count() == 3)
|
||||
{
|
||||
startupContext.UpdateLocation = args[1];
|
||||
startupContext.ExecutingApplication = args[2];
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
logger.Debug("Arguments:");
|
||||
|
||||
foreach (var arg in args)
|
||||
{
|
||||
logger.Debug(" {0}", arg);
|
||||
}
|
||||
|
||||
var message = String.Format("Number of arguments are unexpected, expected: 3, found: {0}", args.Count());
|
||||
|
||||
throw new ArgumentOutOfRangeException("args", message);
|
||||
}
|
||||
}
|
||||
|
||||
return startupContext;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue