1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 15:47:20 +02:00

remove readline to exit app.

This commit is contained in:
Keivan Beigi 2013-08-20 15:48:10 -07:00
parent 75a46a3abe
commit 43baa2b86e

View File

@ -1,5 +1,5 @@
using System;
using NzbDrone.Common;
using System.Threading;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Host;
@ -19,12 +19,12 @@ public static void Main(string[] args)
catch (Exception e)
{
System.Console.WriteLine(e.ToString());
System.Console.ReadLine();
}
if (ConsoleService.IsConsoleAvailable)
while (true)
{
System.Console.WriteLine("Press enter to exit...");
System.Console.ReadLine();
Thread.Sleep(10 * 60);
}
}
}