diff options
| author | Bob Arnson <bob@firegiant.com> | 2026-02-04 20:47:04 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2026-02-04 20:47:04 -0500 |
| commit | edccb203c421d2bd820062024088c6698424d9ee (patch) | |
| tree | 6b47c3eb5ca53bd9f79f3d032dc1a596d411bf38 /src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | |
| parent | a3d3963f806117ce123d95e8b77e73e1c1545b25 (diff) | |
| download | wix-bob/ConfigurableScopeBundles.tar.gz wix-bob/ConfigurableScopeBundles.tar.bz2 wix-bob/ConfigurableScopeBundles.zip | |
Support dual-purpose packages in Burn.bob/ConfigurableScopeBundles
Fixes https://github.com/wixtoolset/issues/issues/8958
Diffstat (limited to 'src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp')
| -rw-r--r-- | src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp index bae098d4..e746ff75 100644 --- a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp +++ b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | |||
| @@ -708,7 +708,10 @@ private: | |||
| 708 | 708 | ||
| 709 | m_plannedAction = action; | 709 | m_plannedAction = action; |
| 710 | 710 | ||
| 711 | hr = m_pEngine->Plan(action); | 711 | // InternalUiBootstrapperApplication isn't in a position to let the user |
| 712 | // choose the scope, so we use the default. Unfortunately, a scope choice | ||
| 713 | // in the MSI UI can't "flow" back to affect bundle scope. | ||
| 714 | hr = m_pEngine->Plan(action, BOOTSTRAPPER_SCOPE_DEFAULT); | ||
| 712 | BalExitOnFailure(hr, "Failed to start planning packages."); | 715 | BalExitOnFailure(hr, "Failed to start planning packages."); |
| 713 | 716 | ||
| 714 | LExit: | 717 | LExit: |
