mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 18:17:13 +02:00
Do not install any dependencies on the "clean" target
This commit is contained in:
@ -65,10 +65,11 @@ class EnvironmentProcessor(object):
|
|||||||
if "monitor" in build_targets:
|
if "monitor" in build_targets:
|
||||||
build_targets.remove("monitor")
|
build_targets.remove("monitor")
|
||||||
|
|
||||||
install_project_env_dependencies(
|
if "clean" not in build_targets:
|
||||||
self.name,
|
install_project_env_dependencies(
|
||||||
{"project_targets": build_targets},
|
self.name,
|
||||||
)
|
{"project_targets": build_targets},
|
||||||
|
)
|
||||||
|
|
||||||
result = PlatformFactory.new(self.options["platform"]).run(
|
result = PlatformFactory.new(self.options["platform"]).run(
|
||||||
build_vars, build_targets, self.silent, self.verbose, self.jobs
|
build_vars, build_targets, self.silent, self.verbose, self.jobs
|
||||||
|
Reference in New Issue
Block a user