From 456690fd08c1b539045bf6de8c6b247074af44ce Mon Sep 17 00:00:00 2001 From: Alexander Forbes-Reed Date: Mon, 27 Apr 2020 22:18:12 +0100 Subject: [PATCH] =?UTF-8?q?it=E2=80=99s=20late=20ok?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dotnet/Global/Libraries/LocalSecrets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }