Update Git-submodules for development platforms and libraries which were installed from repository

This commit is contained in:
Ivan Kravets
2017-04-15 16:19:41 +03:00
parent f194a1a572
commit 64ed76762e
2 changed files with 6 additions and 2 deletions

View File

@ -10,7 +10,11 @@ PlatformIO 3.0
* Multi-line support for the different options in `Project Configuration File "platformio.ini" <http://docs.platformio.org/page/projectconf.html>`__,
such as: ``build_flags``, ``build_unflags``, etc.
(`issue #889 <https://github.com/platformio/platformio-core/issues/889>`_)
* Handle dynamic ``SRC_FILTER`` environment variable from
`library.json extra script <http://docs.platformio.org/page/librarymanager/config.html#extrascript>`__
* Improved auto-detecting of mbed-enabled media disks
* Update Git-submodules for development platforms and libraries which were
installed from repository
-------

View File

@ -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):