summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andus Yu <andusyu@google.com> 2023-06-22 19:38:33 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-06-22 19:38:33 +0000
commitf3da8ee95b92d0510b9ef41460c45ebee828ce54 (patch)
tree862dc0a073de02e7d5c9d49de19a4212fa177ffd
parent2c59e460348952549d32334b95fc37e42542de7e (diff)
parent0b3dc03f9dab781bb42b7c41ac79039a9c050e33 (diff)
Merge "Do not check ssh credentials when running gcertstatus"
-rw-r--r--ui/build/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/build/config.go b/ui/build/config.go
index 80038f511..0259009b3 100644
--- a/ui/build/config.go
+++ b/ui/build/config.go
@@ -1514,7 +1514,7 @@ func (c *configImpl) GoogleProdCredsExist() bool {
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