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

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)
}
}