Merge "Add FAILED: prefix to RBE Fatal error message" am: 2e0598ddc3

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ic50a38f89cd212452db5caa642eaa8c40559b8ff
This commit is contained in:
Treehugger Robot 2021-01-27 01:00:45 +00:00 committed by Automerger Merge Worker
commit 13bb117f3b
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ func startRBE(ctx Context, config Config) {
cmd := Command(ctx, config, "startRBE bootstrap", rbeCommand(ctx, config, bootstrapCmd))
if output, err := cmd.CombinedOutput(); err != nil {
ctx.Fatalf("rbe bootstrap failed with: %v\n%s\n", err, output)
ctx.Fatalf("Unable to start RBE reproxy\nFAILED: RBE bootstrap failed with: %v\n%s\n", err, output)
}
}