aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-05-17 17:30:46 -0400
committerBob Arnson <bob@firegiant.com>2020-05-17 17:38:40 -0400
commitdf8cf532fb8f77947664b95901122b8b47fe562b (patch)
treee88c8e836c8f215fa2bd67760a2c0ab91e12aff8 /src/WixToolset.Core.WindowsInstaller
parentad9cdd7dc6faee762e06a8d3446fa68c74dd802d (diff)
downloadwix-df8cf532fb8f77947664b95901122b8b47fe562b.tar.gz
wix-df8cf532fb8f77947664b95901122b8b47fe562b.tar.bz2
wix-df8cf532fb8f77947664b95901122b8b47fe562b.zip
Add missing ARM64 cases & random fixes.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Unbind/ExtractCabinetsCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/ExtractCabinetsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/ExtractCabinetsCommand.cs
index 6840b2d4..f63835b8 100644
--- a/src/WixToolset.Core.WindowsInstaller/Unbind/ExtractCabinetsCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Unbind/ExtractCabinetsCommand.cs
@@ -90,7 +90,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind
90 { 90 {
91 if (null != record) 91 if (null != record)
92 { 92 {
93 // since the cabinets are stored in case-sensitive streams inside the msi, but the file system is not case-sensitive, 93 // since the cabinets are stored in case-sensitive streams inside the msi, but the file system is not (typically) case-sensitive,
94 // embedded cabinets must be extracted to a canonical file name (like their diskid) to ensure extraction will always work 94 // embedded cabinets must be extracted to a canonical file name (like their diskid) to ensure extraction will always work
95 var cabinetFile = Path.Combine(this.IntermediateFolder, String.Concat("Media", Path.DirectorySeparatorChar, diskId.ToString(CultureInfo.InvariantCulture), ".cab")); 95 var cabinetFile = Path.Combine(this.IntermediateFolder, String.Concat("Media", Path.DirectorySeparatorChar, diskId.ToString(CultureInfo.InvariantCulture), ".cab"));
96 96