added /run/ to none-production start paths.

This commit is contained in:
kay.one 2013-09-14 17:23:58 -07:00
parent 661ba97215
commit 9abd5c0e28
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@ namespace NzbDrone.Common.EnvironmentInfo
if (lowerProcessName.Contains("jetbrain")) return false;
if (lowerProcessName.Contains("resharper")) return false;
if (Directory.GetCurrentDirectory().ToLower().Contains("teamcity")) return false;
string lowerCurrentDir = Directory.GetCurrentDirectory().ToLower();
if (lowerCurrentDir.Contains("teamcity")) return false;
if (lowerCurrentDir.StartsWith("/run/")) return false;
return true;
}