commit | f3da8ee95b92d0510b9ef41460c45ebee828ce54 | [log] [tgz] |
---|---|---|
author | Andus Yu <andusyu@google.com> | Thu Jun 22 19:38:33 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Jun 22 19:38:33 2023 +0000 |
tree | 862dc0a073de02e7d5c9d49de19a4212fa177ffd | |
parent | 2c59e460348952549d32334b95fc37e42542de7e [diff] | |
parent | 0b3dc03f9dab781bb42b7c41ac79039a9c050e33 [diff] |
Merge "Do not check ssh credentials when running gcertstatus"
diff --git a/ui/build/config.go b/ui/build/config.go index 80038f5..0259009 100644 --- a/ui/build/config.go +++ b/ui/build/config.go
@@ -1514,7 +1514,7 @@ if googleProdCredsExistCache { return googleProdCredsExistCache } - if _, err := exec.Command("/usr/bin/gcertstatus").Output(); err != nil { + if _, err := exec.Command("/usr/bin/gcertstatus", "-nocheck_ssh").Output(); err != nil { return false } googleProdCredsExistCache = true