From 64ed76762e8502ddde9fb06733a7e416eaa45d29 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 15 Apr 2017 16:19:41 +0300 Subject: [PATCH] Update Git-submodules for development platforms and libraries which were installed from repository --- HISTORY.rst | 6 +++++- platformio/vcsclient.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index df3844fe..0f5843c4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -10,7 +10,11 @@ PlatformIO 3.0 * Multi-line support for the different options in `Project Configuration File "platformio.ini" `__, such as: ``build_flags``, ``build_unflags``, etc. (`issue #889 `_) - +* Handle dynamic ``SRC_FILTER`` environment variable from + `library.json extra script `__ +* Improved auto-detecting of mbed-enabled media disks +* Update Git-submodules for development platforms and libraries which were + installed from repository ------- diff --git a/platformio/vcsclient.py b/platformio/vcsclient.py index 4b43e0a5..8a35e794 100644 --- a/platformio/vcsclient.py +++ b/platformio/vcsclient.py @@ -152,7 +152,7 @@ class GitClient(VCSClientBase): return True def update(self): - args = ["pull"] + args = ["pull", "--recurse-submodules"] return self.run_cmd(args) def get_current_revision(self):