diff options
| author | 2023-06-22 19:38:33 +0000 | |
|---|---|---|
| committer | 2023-06-22 19:38:33 +0000 | |
| commit | f3da8ee95b92d0510b9ef41460c45ebee828ce54 (patch) | |
| tree | 862dc0a073de02e7d5c9d49de19a4212fa177ffd | |
| parent | 2c59e460348952549d32334b95fc37e42542de7e (diff) | |
| parent | 0b3dc03f9dab781bb42b7c41ac79039a9c050e33 (diff) | |
Merge "Do not check ssh credentials when running gcertstatus"
| -rw-r--r-- | ui/build/config.go | 2 |
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 |