Correct mismatched string format in bazel_handler

Test: go test soong tests
Change-Id: Ic48d2e75e8d246f490f46f4619e739b0fa565902
This commit is contained in:
Liz Kammer
2020-12-16 11:13:30 -08:00
parent 2df93e550b
commit 13548d7fa8

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