aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/xcode/swiftstdlibtoolwrapper
diff options
context:
space:
mode:
authorGravatar Dave MacLachlan <dmaclach@google.com>2015-11-17 23:28:06 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-11-18 15:31:07 +0000
commit9190c8407cb3de13f33f85a856ef31d23b759fb7 (patch)
tree43938def93d6982c718f3e4256a6c4d5c5dc911f /src/tools/xcode/swiftstdlibtoolwrapper
parent273fa90afa0f501d94f5a8752c48bb6e3c11ba1d (diff)
Get rid of compression when zipping up files to improve local compilation performance.
RELNOTES:none -- MOS_MIGRATED_REVID=108086031
Diffstat (limited to 'src/tools/xcode/swiftstdlibtoolwrapper')
-rwxr-xr-xsrc/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh b/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh
index ed7d47122d..24bf573898 100755
--- a/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh
+++ b/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh
@@ -49,5 +49,5 @@ find . -exec touch -h -t 198001010000 {} \;
# Added include "*" to fix case where we may want an empty zip file because
# there is no data.
-zip --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
+zip --compression-method store --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
popd > /dev/null