diff --git a/platformio/maintenance.py b/platformio/maintenance.py index da6c1329..b0485fc3 100644 --- a/platformio/maintenance.py +++ b/platformio/maintenance.py @@ -154,17 +154,12 @@ def after_upgrade(ctx): if last_version == "0.0.0": app.set_state_item("last_version", __version__) else: - click.secho("Please wait while upgrading PlatformIO ...", fg="yellow") + click.secho("Please wait while upgrading PlatformIO...", fg="yellow") app.clean_cache() u = Upgrader(last_version, __version__) if u.run(ctx): app.set_state_item("last_version", __version__) - # update development platforms - pm = PlatformManager() - for manifest in pm.get_installed(): - pm.update(manifest['__pkg_dir']) - # update PlatformIO Plus tool if installed pioplus_update()