Removed conflicting criteria from IsProduction check.

This commit is contained in:
Taloth Saldono 2016-09-20 21:30:46 +02:00
commit a0b4d3a38d

View file

@ -121,7 +121,6 @@ namespace NzbDrone.Common.EnvironmentInfo
string lowerCurrentDir = Directory.GetCurrentDirectory().ToLower();
if (lowerCurrentDir.Contains("teamcity")) return false;
if (lowerCurrentDir.Contains("_output")) return false;
if (lowerCurrentDir.StartsWith("/run/")) return false;
return true;
}