diff --git a/dotnet/Global/Libraries/LocalSecrets.cs b/dotnet/Global/Libraries/LocalSecrets.cs index c8ef5653..f09adf98 100644 --- a/dotnet/Global/Libraries/LocalSecrets.cs +++ b/dotnet/Global/Libraries/LocalSecrets.cs @@ -15,7 +15,7 @@ static LocalSecrets() _configRepo = Environment.GetEnvironmentVariable("BRANCH_CONFIG_REPO"); _infraRepo = Environment.GetEnvironmentVariable("BRANCH_INFRA_REPO"); - if (!String.IsNullOrWhiteSpace(_configRepo) || !String.IsNullOrWhiteSpace(_configRepo)) + if (String.IsNullOrWhiteSpace(_configRepo) || String.IsNullOrWhiteSpace(_configRepo)) _hasRepo = false; }