Merge "apex: rm $out before decompressing an apex." into main
This commit is contained in:
commit
f826c99ec2
1 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
})
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue