aboutsummaryrefslogtreecommitdiff
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:47:52 -0700
commit5fddbd9e9449d64f405acad0ea285e5889224eac (patch)
tree843cdf5af4861067c013e253125e6cc7aeb8bd1c
parentf7687e8543be400a2510348019352a91eda7009f (diff)
downloadwix-5fddbd9e9449d64f405acad0ea285e5889224eac.tar.gz
wix-5fddbd9e9449d64f405acad0ea285e5889224eac.tar.bz2
wix-5fddbd9e9449d64f405acad0ea285e5889224eac.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
-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