summaryrefslogtreecommitdiff
path: root/apex/builder.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2020-07-13 05:58:42 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-07-13 05:58:42 +0000
commitb7cea24fe39e30dedb6fabe7b7c33f6f4d79c02c (patch)
treebb056e2ea7c2e34dd26aad9798ca491fcc0432b3 /apex/builder.go
parent9d98ac15bb11703b243b7137e6b4abdb61871c59 (diff)
parentd783bbbace0d7e5b7e333ffa276ff18216109cc7 (diff)
Merge "Use unzip -DD"
Diffstat (limited to 'apex/builder.go')
-rw-r--r--apex/builder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go
index 5fb9a5fd4..49e4642bf 100644
--- a/apex/builder.go
+++ b/apex/builder.go
@@ -390,7 +390,7 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) {
} else {
if fi.class == appSet {
copyCommands = append(copyCommands,
- fmt.Sprintf("unzip -q -d %s %s", destPathDir, fi.builtFile.String()))
+ fmt.Sprintf("unzip -qDD -d %s %s", destPathDir, fi.builtFile.String()))
} else {
copyCommands = append(copyCommands, "cp -f "+fi.builtFile.String()+" "+destPath)
}