Merge "Ignore zip comments in dump-package-stats" am: 75cc5bf9ae am: c4c502e751

am: c624182c0c

Change-Id: I252d77518c0b6ce0b1d4934255c99c66bba86e50
This commit is contained in:
Dan Willemsen 2017-10-03 22:51:56 +00:00 committed by android-build-merger
commit 05a1495e41

View file

@ -77,7 +77,7 @@ do
then
fail "$file doesn't exist or isn't a file"
fi
unzip -lv "$file" | awk '
unzip -lvq "$file" | awk '
BEGIN {
total_compressed = 0;
total_uncompressed = 0;
@ -88,16 +88,6 @@ do
# Make sure the output of unzip -lv looks like something we expect.
#
NR == "1" {
if ($1 != "Archive:") {
print "'$PROGNAME': ERROR: Unexpected zip listing format" > \
"/dev/stderr";
print "'$PROGNAME': ERROR: Line 1 is \"" $0 "\"" > \
"/dev/stderr";
failed = 1;
exit 1;
}
}
NR == "2" {
if (NF != "8" ||
$1 != "Length" ||
$2 != "Method" ||