aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-04-13 21:47:27 -0400
committerRob Mensching <rob@firegiant.com>2025-05-28 16:34:21 -0700
commitad108f9d72288f2acf8b201f2cb9815a873dd82a (patch)
tree520397023e1044ad9d94c98b1cfd6a717af32997 /src
parent83a0170f52a623d2655090eea5dd049232bb1280 (diff)
downloadwix-ad108f9d72288f2acf8b201f2cb9815a873dd82a.tar.gz
wix-ad108f9d72288f2acf8b201f2cb9815a873dd82a.tar.bz2
wix-ad108f9d72288f2acf8b201f2cb9815a873dd82a.zip
Always pass `-quiet` to related bundles.
The embedding protocol implies no-UI but if Burn doesn't detect a compatible protocol, it won't use the embedding switch. This provides a backup to keep it silent. Fixes https://github.com/wixtoolset/issues/issues/7969
Diffstat (limited to 'src')
-rw-r--r--src/burn/engine/bundlepackageengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/bundlepackageengine.cpp b/src/burn/engine/bundlepackageengine.cpp
index 612da389..574317e1 100644
--- a/src/burn/engine/bundlepackageengine.cpp
+++ b/src/burn/engine/bundlepackageengine.cpp
@@ -940,7 +940,7 @@ static HRESULT ExecuteBundle(
940 940
941 if (wzRelationTypeCommandLine) 941 if (wzRelationTypeCommandLine)
942 { 942 {
943 hr = StrAllocConcatFormatted(&sczBaseCommand, L" -%ls", wzRelationTypeCommandLine); 943 hr = StrAllocConcatFormatted(&sczBaseCommand, L" -quiet -%ls", wzRelationTypeCommandLine);
944 ExitOnFailure(hr, "Failed to append relation type argument."); 944 ExitOnFailure(hr, "Failed to append relation type argument.");
945 } 945 }
946 946