diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler_Bundle.cs')
| -rw-r--r-- | src/WixToolset.Core/Compiler_Bundle.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs index ee6866b9..c95cb2b4 100644 --- a/src/WixToolset.Core/Compiler_Bundle.cs +++ b/src/WixToolset.Core/Compiler_Bundle.cs | |||
| @@ -230,13 +230,13 @@ namespace WixToolset.Core | |||
| 230 | 230 | ||
| 231 | if (String.IsNullOrEmpty(name)) | 231 | if (String.IsNullOrEmpty(name)) |
| 232 | { | 232 | { |
| 233 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:Setup:.log"); | 233 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:Setup:log"); |
| 234 | } | 234 | } |
| 235 | else | 235 | else |
| 236 | { | 236 | { |
| 237 | // Ensure only allowable path characters are in "name" (and change spaces to underscores). | 237 | // Ensure only allowable path characters are in "name" (and change spaces to underscores). |
| 238 | fileSystemSafeBundleName = CompilerCore.MakeValidLongFileName(name.Replace(' ', '_'), "_"); | 238 | fileSystemSafeBundleName = CompilerCore.MakeValidLongFileName(name.Replace(' ', '_'), "_"); |
| 239 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:", fileSystemSafeBundleName, ":.log"); | 239 | logVariablePrefixAndExtension = String.Concat("WixBundleLog:", fileSystemSafeBundleName, ":log"); |
| 240 | } | 240 | } |
| 241 | 241 | ||
| 242 | this.activeName = String.IsNullOrEmpty(name) ? Common.GenerateGuid() : name; | 242 | this.activeName = String.IsNullOrEmpty(name) ? Common.GenerateGuid() : name; |
