Merge "Correct mismatched string format in bazel_handler"

This commit is contained in:
Treehugger Robot 2021-01-05 23:57:53 +00:00 committed by Gerrit Code Review
commit f33786d3ec
1 changed files with 1 additions and 1 deletions

View File

@ -515,6 +515,6 @@ func (c *bazelSingleton) GenerateBuildActions(ctx SingletonContext) {
// build statement have later timestamps than the outputs.
rule.Restat()
rule.Build(fmt.Sprintf("bazel %s", index), buildStatement.Mnemonic)
rule.Build(fmt.Sprintf("bazel %d", index), buildStatement.Mnemonic)
}
}