Skip to content

Commit

Permalink
rustbuild: Turn down compression on msi installers
Browse files Browse the repository at this point in the history
This is the same as rust-lang#64615 except applied to our MSI installers. The
same fix is applied effectively bringing these installers in line with
the gz tarball installers, which are about 3x faster to produce locally
and likely much faster to produce on CI.
  • Loading branch information
alexcrichton committed Sep 19, 2019
1 parent 9b9d2af commit fde8cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etc/installer/msi/rust.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
</Upgrade>

<!-- Specifies a single cab file to be embedded in the installer's .msi. -->
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
<MediaTemplate EmbedCab="yes" CompressionLevel="mszip" />

<!-- Send a WM_SETTINGCHANGE message to tell processes like explorer to update their
environments so any new command prompts get the updated %PATH% -->
Expand Down

0 comments on commit fde8cfe

Please sign in to comment.