diff options
author | Rob Mensching <rob@firegiant.com> | 2021-03-16 15:21:38 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-03-16 15:23:16 -0700 |
commit | 19e92bd1fde66afe6592c186bbfd23d5da9e90ee (patch) | |
tree | e40a1d3b9195c940e61493863dcdff6eb94af288 /src | |
parent | 98162d13605a22d897a3ad1ba134024eebe9f5d4 (diff) | |
download | wix-19e92bd1fde66afe6592c186bbfd23d5da9e90ee.tar.gz wix-19e92bd1fde66afe6592c186bbfd23d5da9e90ee.tar.bz2 wix-19e92bd1fde66afe6592c186bbfd23d5da9e90ee.zip |
Add error detail to UnableToResetAcls message
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Data/WarningMessages.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/WarningMessages.cs b/src/WixToolset.Data/WarningMessages.cs index 4e261f4c..60be6dea 100644 --- a/src/WixToolset.Data/WarningMessages.cs +++ b/src/WixToolset.Data/WarningMessages.cs | |||
@@ -608,9 +608,9 @@ namespace WixToolset.Data | |||
608 | return Message(sourceLineNumbers, Ids.UnableToFindFileFromCabOrImage, "Unable to find existing file {0} to place in src location {1}. Will likely cause a linker break.", existingFileSpec, srcFileSpec); | 608 | return Message(sourceLineNumbers, Ids.UnableToFindFileFromCabOrImage, "Unable to find existing file {0} to place in src location {1}. Will likely cause a linker break.", existingFileSpec, srcFileSpec); |
609 | } | 609 | } |
610 | 610 | ||
611 | public static Message UnableToResetAcls() | 611 | public static Message UnableToResetAcls(string error) |
612 | { | 612 | { |
613 | return Message(null, Ids.UnableToResetAcls, "Unable to reset acls on destination files."); | 613 | return Message(null, Ids.UnableToResetAcls, "Unable to reset acls on destination files. Exception detail: {0}", error); |
614 | } | 614 | } |
615 | 615 | ||
616 | public static Message UnclearShortcut(SourceLineNumber sourceLineNumbers, string shortcutId, string fileId, string componentId) | 616 | public static Message UnclearShortcut(SourceLineNumber sourceLineNumbers, string shortcutId, string fileId, string componentId) |