diff options
| author | Dan Engelbrecht <[email protected]> | 2026-03-06 07:45:02 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-06 07:45:02 +0100 |
| commit | 2275a88da7d0dbcfbc70c6050b7a1417036ea98d (patch) | |
| tree | 3751da00328f4129e2e0fa68fc65164ff85fa3f3 /src | |
| parent | oidctoken tool package (#810) (diff) | |
| download | zen-2275a88da7d0dbcfbc70c6050b7a1417036ea98d.tar.xz zen-2275a88da7d0dbcfbc70c6050b7a1417036ea98d.zip | |
fix oidctoken exe lookup check (#811)
Diffstat (limited to 'src')
| -rw-r--r-- | src/zen/authutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zen/authutils.cpp b/src/zen/authutils.cpp index 23ac70965..534f7952b 100644 --- a/src/zen/authutils.cpp +++ b/src/zen/authutils.cpp @@ -294,7 +294,7 @@ AuthCommandLineOptions::ParseOptions(cxxopts::Options& Ops, } ClientSettings.AccessTokenProvider = httpclientauth::CreateFromStaticToken(ResolvedAccessToken); } - else if (std::filesystem::path OidcTokenExePath = FindOidcTokenExePath(m_OidcTokenAuthExecutablePath); OidcTokenExePath.empty()) + else if (std::filesystem::path OidcTokenExePath = FindOidcTokenExePath(m_OidcTokenAuthExecutablePath); !OidcTokenExePath.empty()) { if (!Quiet) { |