From cdd63dec6553bbb801d7c487924324b7aa93677a Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 2 Apr 2022 16:38:54 +0300 Subject: [PATCH] Do not process package that was installed into the "env" storage // Resolve #2910 --- platformio/package/commands/install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platformio/package/commands/install.py b/platformio/package/commands/install.py index 23589a5c..48bbcd95 100644 --- a/platformio/package/commands/install.py +++ b/platformio/package/commands/install.py @@ -239,6 +239,8 @@ def _install_project_private_library_deps(private_pkg, private_lm, env_lm, optio skip_dependencies=True, force=options.get("force"), ) + if not pkg: + continue _install_project_private_library_deps(pkg, private_lm, env_lm, options)