From 6f2511f58f60e63a15357a2fe37f83343dea3090 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Fri, 10 Feb 2023 16:29:06 -0500 Subject: Elevate known cab failures to messages. Fixes https://github.com/wixtoolset/issues/issues/7169. --- src/api/wix/WixToolset.Data/ErrorMessages.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/api') diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs index aa9750a8..35bd23c5 100644 --- a/src/api/wix/WixToolset.Data/ErrorMessages.cs +++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs @@ -180,12 +180,12 @@ namespace WixToolset.Data public static Message CreateCabAddFileFailed() { - return Message(null, Ids.CreateCabAddFileFailed, "An error (E_FAIL) was returned while adding files to a CAB file. This most commonly happens when creating a CAB file 2 GB or larger. Either reduce the size of your installation package, raise Media/@CompressionLevel to a higher compression level, or split your installation package's files into more than one CAB file."); + return Message(null, Ids.CreateCabAddFileFailed, "An error (E_FAIL) was returned while creating a CAB file. The most common cause of this error is attempting to create a CAB file larger than 2GB. You can reduce the size of your installation package, use a higher compression level, or split your files into more than one CAB file."); } public static Message CreateCabInsufficientDiskSpace() { - return Message(null, Ids.CreateCabInsufficientDiskSpace, "An error (ERROR_DISK_FULL) was returned while creating a CAB file. This means you have insufficient disk space - please clear more disk space and try this operation again."); + return Message(null, Ids.CreateCabInsufficientDiskSpace, "An error (ERROR_DISK_FULL) was returned while creating a CAB file. This means you have insufficient disk space. Clear disk space and try again."); } public static Message CubeFileNotFound(string cubeFile) -- cgit v1.2.3-55-g6feb