Offline mode for PIO Account Show command

This commit is contained in:
Ivan Kravets
2017-05-04 00:36:52 +03:00
parent 30ff491a34
commit c69269ea3d
2 changed files with 3 additions and 2 deletions

View File

@ -61,7 +61,8 @@ def account_forgot(**kwargs):
pioplus_call(sys.argv[1:])
@cli.command("show", short_help="PIO Account information: groups, permissions")
@cli.command("show", short_help="PIO Account information")
@click.option("--offline", is_flag=True)
@click.option("--json-output", is_flag=True)
def account_show(**kwargs):
pioplus_call(sys.argv[1:])

View File

@ -22,7 +22,7 @@ from platformio.managers.package import PackageManager
CORE_PACKAGES = {
"pysite-pioplus": ">=0.3.0,<2",
"tool-pioplus": ">=0.8.2,<2",
"tool-pioplus": ">=0.8.3,<2",
"tool-unity": "~1.20302.1",
"tool-scons": "~3.20501.2"
}