aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/DecompileCommand.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-12-12 15:48:08 -0500
committerBob Arnson <bob@firegiant.com>2020-12-12 15:55:20 -0500
commitea4cb92faf459ea90181f12a27cf6d7b1d7c5dbf (patch)
treec6797847dcf9fdf8e68ff8eee24b35a137e01d47 /src/WixToolset.Core/CommandLine/DecompileCommand.cs
parente2f9e3cdc8e37693121fbc0ce61bdd325cbec626 (diff)
downloadwix-ea4cb92faf459ea90181f12a27cf6d7b1d7c5dbf.tar.gz
wix-ea4cb92faf459ea90181f12a27cf6d7b1d7c5dbf.tar.bz2
wix-ea4cb92faf459ea90181f12a27cf6d7b1d7c5dbf.zip
Fix merge module decompilation timing.
Diffstat (limited to 'src/WixToolset.Core/CommandLine/DecompileCommand.cs')
-rw-r--r--src/WixToolset.Core/CommandLine/DecompileCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CommandLine/DecompileCommand.cs b/src/WixToolset.Core/CommandLine/DecompileCommand.cs
index bce7a5a4..873c85ee 100644
--- a/src/WixToolset.Core/CommandLine/DecompileCommand.cs
+++ b/src/WixToolset.Core/CommandLine/DecompileCommand.cs
@@ -53,7 +53,7 @@ namespace WixToolset.Core.CommandLine
53 53
54 if (!this.Messaging.EncounteredError) 54 if (!this.Messaging.EncounteredError)
55 { 55 {
56 Directory.CreateDirectory(Path.GetDirectoryName(context.OutputPath)); 56 Directory.CreateDirectory(Path.GetDirectoryName(Path.GetFullPath(context.OutputPath)));
57 result.Document.Save(context.OutputPath, SaveOptions.OmitDuplicateNamespaces); 57 result.Document.Save(context.OutputPath, SaveOptions.OmitDuplicateNamespaces);
58 } 58 }
59 } 59 }