Merge "Fix go link given when stubby is absent." am: e7e9e09128 am: ede2efc88f

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2320299

Change-Id: I2b59855ffdf81d3a4588b3fb64eebc0d9fe8b23a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Paul Crowley 2022-12-15 19:21:41 +00:00 committed by Automerger Merge Worker
commit 95f9231762

View file

@ -148,7 +148,7 @@ func CheckProdCreds(ctx Context, config Config) {
}
if !config.StubbyExists() && prodCredsAuthType(config) {
fmt.Fprintln(ctx.Writer, "")
fmt.Fprintln(ctx.Writer, fmt.Sprintf("\033[33mWARNING: %q binary not found in $PATH, follow go/build-fast#opting-out-of-loas-credentials instead for authenticating with RBE.\033[0m", "stubby"))
fmt.Fprintln(ctx.Writer, fmt.Sprintf("\033[33mWARNING: %q binary not found in $PATH, follow go/build-fast-without-stubby instead for authenticating with RBE.\033[0m", "stubby"))
fmt.Fprintln(ctx.Writer, "")
return
}