Merge "Fix missing credential error message" into main

This commit is contained in:
Jihoon Kang
2024-03-08 06:34:50 +00:00
committed by Gerrit Code Review

View File

@@ -163,7 +163,7 @@ func CheckProdCreds(ctx Context, config Config) {
return
}
fmt.Fprintln(ctx.Writer, "")
fmt.Fprintln(ctx.Writer, "\033[33mWARNING: Missing LOAS credentials, please run `gcert`. This will result in failing builds in the future, see go/rbe-android-default-announcement.\033[0m")
fmt.Fprintln(ctx.Writer, "\033[33mWARNING: Missing LOAS credentials, please run `gcert`. This is required for a successful build execution. See go/rbe-android-default-announcement for more information.\033[0m")
fmt.Fprintln(ctx.Writer, "")
}