diff --git a/android/bazel_handler.go b/android/bazel_handler.go index 22412553c..6648a2fb8 100644 --- a/android/bazel_handler.go +++ b/android/bazel_handler.go @@ -815,7 +815,7 @@ func (c *bazelSingleton) GenerateBuildActions(ctx SingletonContext) { if len(buildStatement.OutputPaths) > 0 { cmd.Text("rm -f") for _, outputPath := range buildStatement.OutputPaths { - cmd.Text(PathForBazelOut(ctx, outputPath).String()) + cmd.Text(outputPath) } cmd.Text("&&") }