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

Commit d7d5b72e authored by Liz Kammer's avatar Liz Kammer
Browse files

Correct path for removing old bazel artifacts

Test: mixed_libc.sh
Bug: 201767767
Change-Id: Ie34ac3a583dbefb6c4b79ea0756acef623116af7
parent 1b5262bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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("&&")
		}