mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Minor fixes
This commit is contained in:
@ -31,7 +31,7 @@ PlatformIO Core 5
|
|||||||
|
|
||||||
* Integration with the new **Account Management System**
|
* Integration with the new **Account Management System**
|
||||||
|
|
||||||
- `Manage organizations and owners of an organization <https://docs.platformio.org/page/core/userguide/org/index.html>`__
|
- `Manage organizations <https://docs.platformio.org/page/core/userguide/org/index.html>`__
|
||||||
- `Manage teams and team memberships <https://docs.platformio.org/page/core/userguide/team/index.html>`__
|
- `Manage teams and team memberships <https://docs.platformio.org/page/core/userguide/team/index.html>`__
|
||||||
|
|
||||||
* New **Package Management System**
|
* New **Package Management System**
|
||||||
|
2
docs
2
docs
Submodule docs updated: 7def3c5008...1a4a4bf127
@ -145,13 +145,16 @@ class MeasurementProtocol(TelemetryBase):
|
|||||||
|
|
||||||
cmd_path = args[:1]
|
cmd_path = args[:1]
|
||||||
if args[0] in (
|
if args[0] in (
|
||||||
|
"access",
|
||||||
"account",
|
"account",
|
||||||
"device",
|
"device",
|
||||||
"platform",
|
"org",
|
||||||
"package",
|
"package",
|
||||||
|
"platform",
|
||||||
"project",
|
"project",
|
||||||
"settings",
|
"settings",
|
||||||
"system",
|
"system",
|
||||||
|
"team"
|
||||||
):
|
):
|
||||||
cmd_path = args[:2]
|
cmd_path = args[:2]
|
||||||
if args[0] == "lib" and len(args) > 1:
|
if args[0] == "lib" and len(args) > 1:
|
||||||
|
@ -29,7 +29,6 @@ import click
|
|||||||
from platformio import __version__, exception, proc
|
from platformio import __version__, exception, proc
|
||||||
from platformio.compat import PY2, WINDOWS
|
from platformio.compat import PY2, WINDOWS
|
||||||
from platformio.fs import cd, load_json # pylint: disable=unused-import
|
from platformio.fs import cd, load_json # pylint: disable=unused-import
|
||||||
from platformio.package.version import pepver_to_semver # pylint: disable=unused-import
|
|
||||||
from platformio.proc import exec_command # pylint: disable=unused-import
|
from platformio.proc import exec_command # pylint: disable=unused-import
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user