diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-09-15 14:51:55 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-09-15 17:05:54 -0500 |
commit | f1f75591bb723ac7358afa142307fe9574d59956 (patch) | |
tree | 6760496722be049aa66edfd40e5238711cd40cb5 /src/burn/engine/plan.cpp | |
parent | 86cb96db39f97aacf1ed78b1e95fefe15e54bee6 (diff) | |
download | wix-f1f75591bb723ac7358afa142307fe9574d59956.tar.gz wix-f1f75591bb723ac7358afa142307fe9574d59956.tar.bz2 wix-f1f75591bb723ac7358afa142307fe9574d59956.zip |
Don't clean packages during layout.
Fixes 6871
Diffstat (limited to 'src/burn/engine/plan.cpp')
-rw-r--r-- | src/burn/engine/plan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/plan.cpp b/src/burn/engine/plan.cpp index e6997b64..b7703869 100644 --- a/src/burn/engine/plan.cpp +++ b/src/burn/engine/plan.cpp | |||
@@ -871,7 +871,7 @@ static HRESULT PlanPackagesHelper( | |||
871 | } | 871 | } |
872 | 872 | ||
873 | // Passthrough packages are never cleaned up by the calling bundle (they delete themselves when appropriate). | 873 | // Passthrough packages are never cleaned up by the calling bundle (they delete themselves when appropriate). |
874 | if (!pPlan->fEnabledForwardCompatibleBundle) | 874 | if (!pPlan->fEnabledForwardCompatibleBundle && BOOTSTRAPPER_ACTION_LAYOUT != pPlan->action) |
875 | { | 875 | { |
876 | // Plan clean up of packages. | 876 | // Plan clean up of packages. |
877 | for (DWORD i = 0; i < cPackages; ++i) | 877 | for (DWORD i = 0; i < cPackages; ++i) |