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

Commit f826c99e authored by Jooyung Han's avatar Jooyung Han Committed by Gerrit Code Review
Browse files

Merge "apex: rm $out before decompressing an apex." into main

parents d882a0c9 8fa6116a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -43,9 +43,9 @@ var (
		},
		"abis", "allow-prereleased", "sdk-version", "skip-sdk-check")
	decompressApex = pctx.StaticRule("decompressApex", blueprint.RuleParams{
		Command:     `${deapexer} decompress --copy-if-uncompressed --input ${in} --output ${out}`,
		Command:     `rm -rf $out && ${deapexer} decompress --copy-if-uncompressed --input ${in} --output ${out}`,
		CommandDeps: []string{"${deapexer}"},
		Description: "decompress",
		Description: "decompress $out",
	})
)