From ea4cb92faf459ea90181f12a27cf6d7b1d7c5dbf Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Sat, 12 Dec 2020 15:48:08 -0500 Subject: Fix merge module decompilation timing. --- src/WixToolset.Core/CommandLine/DecompileCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/WixToolset.Core/CommandLine') 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 if (!this.Messaging.EncounteredError) { - Directory.CreateDirectory(Path.GetDirectoryName(context.OutputPath)); + Directory.CreateDirectory(Path.GetDirectoryName(Path.GetFullPath(context.OutputPath))); result.Document.Save(context.OutputPath, SaveOptions.OmitDuplicateNamespaces); } } -- cgit v1.2.3-55-g6feb