Skip to content

Commit

Permalink
fix: typo in error message when referenced CAB file is not embedded i…
Browse files Browse the repository at this point in the history
…nside of the msi (#168)
  • Loading branch information
bl-ue committed Sep 19, 2021
1 parent d535045 commit ff4944e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LessMsi.Core/Msi/ExternalCabNotFoundException.cs
Expand Up @@ -12,7 +12,7 @@ public class ExternalCabNotFoundException : Exception
{
public static ExternalCabNotFoundException CreateFromCabPath(string cabFileName, string expectedLocation)
{
var msg = string.Format("This msi file references a CAB file that is not embedded inside of the msi file itself. The msi file is named {0} and was expected to be in the following folder: {1}", cabFileName, expectedLocation);
var msg = string.Format("This msi file references a CAB file that is not embedded inside of the msi file itself. The CAB file is named {0} and was expected to be in the following folder: {1}", cabFileName, expectedLocation);
return new ExternalCabNotFoundException(msg);
}

Expand Down

0 comments on commit ff4944e

Please sign in to comment.