Skip to content

Commit

Permalink
Do not resolve project dependencies on for the "cleanall" target // R…
Browse files Browse the repository at this point in the history
…esolve #4344
  • Loading branch information
ivankravets committed Jul 29, 2022
1 parent 7c9e039 commit 537558d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ PlatformIO Core 6

* Improved device port finder when using dual channel UART converter (`issue #4367 <https://github.com/platformio/platformio-core/issues/4367>`_)
* Improved project dependency resolving when using the `pio project init --ide <https://docs.platformio.org/en/latest/core/userguide/project/cmd_init.html>`__ command
* Do not resolve project dependencies on for the ``cleanall`` target (`issue #4344 <https://github.com/platformio/platformio-core/issues/4344>`_)
* Fixed an issue when escaping macros/defines for IDE integration (`issue #4360 <https://github.com/platformio/platformio-core/issues/4360>`_)

6.1.3 (2022-07-18)
Expand Down
2 changes: 1 addition & 1 deletion platformio/run/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def process(self):
if "monitor" in build_targets:
build_targets.remove("monitor")

if "clean" not in build_targets:
if not set(["clean", "cleanall"]) & set(build_targets):
install_project_env_dependencies(
self.name,
{
Expand Down

0 comments on commit 537558d

Please sign in to comment.