From 210cd760424bbb94bc888d5f65b0fa8f90962c39 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 25 Aug 2020 22:01:22 +0300 Subject: [PATCH] Rename "idedata" sub-command to "data" --- docs | 2 +- platformio/commands/project.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs b/docs index cc09d981..ccce6f04 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit cc09d981358a438ad474485a89ee5ddbc1842c65 +Subproject commit ccce6f04e2e54dd3e08c83f23480a49823c8f5c7 diff --git a/platformio/commands/project.py b/platformio/commands/project.py index 6900ce74..bd37175a 100644 --- a/platformio/commands/project.py +++ b/platformio/commands/project.py @@ -69,7 +69,7 @@ def project_config(project_dir, json_output): return None -@cli.command("idedata", short_help="Dump data intended for IDE extensions/plugins") +@cli.command("data", short_help="Dump data intended for IDE extensions/plugins") @click.option( "-d", "--project-dir", @@ -78,7 +78,7 @@ def project_config(project_dir, json_output): ) @click.option("-e", "--environment", multiple=True) @click.option("--json-output", is_flag=True) -def project_idedata(project_dir, environment, json_output): +def project_data(project_dir, environment, json_output): if not is_platformio_project(project_dir): raise NotPlatformIOProjectError(project_dir) with fs.cd(project_dir):