From a1baaf5c311feb3c92fc2283e6fb135ce65d49e2 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Sun, 13 Apr 2025 21:47:27 -0400 Subject: 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 --- src/burn/engine/bundlepackageengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/burn/engine/bundlepackageengine.cpp') 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( if (wzRelationTypeCommandLine) { - hr = StrAllocConcatFormatted(&sczBaseCommand, L" -%ls", wzRelationTypeCommandLine); + hr = StrAllocConcatFormatted(&sczBaseCommand, L" -quiet -%ls", wzRelationTypeCommandLine); ExitOnFailure(hr, "Failed to append relation type argument."); } -- cgit v1.2.3-55-g6feb