diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-07-09 21:50:32 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-07-31 14:38:50 +0300 |
commit | d404187ee979440d242da35cd93cfd8bcff9ca38 (patch) | |
tree | 8348cd7ab72d75abf8c39da7c1785b748ac2bbe0 | |
parent | ff4120eafcd5d2bcc92eac530692db389a211db7 (diff) |
Fix execute_plan() not to load old config in simulation mode
-rw-r--r-- | bpkg/pkg-build.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/pkg-build.cxx b/bpkg/pkg-build.cxx index c6776c2..b4ba593 100644 --- a/bpkg/pkg-build.cxx +++ b/bpkg/pkg-build.cxx @@ -7879,7 +7879,7 @@ namespace bpkg : nullptr)); } - if (disfigure) + if (disfigure && !simulate) p.skeleton->load_old_config (); } |