Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13548d7f authored by Liz Kammer's avatar Liz Kammer
Browse files

Correct mismatched string format in bazel_handler

Test: go test soong tests
Change-Id: Ic48d2e75e8d246f490f46f4619e739b0fa565902
parent 2df93e55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
	}
}