aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-04-13 21:47:27 -0400
committerBob Arnson <bob@firegiant.com>2025-04-15 17:55:38 -0400
commita1baaf5c311feb3c92fc2283e6fb135ce65d49e2 (patch)
tree48b05932b3740bfbee410aa7564542bc7be12b8d
parent8c7432e50072e009353ea5f2c956ccf453476f71 (diff)
downloadwix-bob/PreventSplashScreenForWixV3RelatedBundle.tar.gz
wix-bob/PreventSplashScreenForWixV3RelatedBundle.tar.bz2
wix-bob/PreventSplashScreenForWixV3RelatedBundle.zip
Always pass `-quiet` to related bundles.bob/PreventSplashScreenForWixV3RelatedBundle
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