From 3f3d6c84d75042ae68a508b997e6f8e26fe43576 Mon Sep 17 00:00:00 2001 From: Anton Maklakov Date: Thu, 14 Apr 2022 13:39:16 +0700 Subject: [PATCH] tools: print system platform --- tools/idf_tools.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/idf_tools.py b/tools/idf_tools.py index cfbbfefd64..2e06cd1a2d 100755 --- a/tools/idf_tools.py +++ b/tools/idf_tools.py @@ -1570,10 +1570,11 @@ def action_install(args): # type: ignore tools_info = load_tools_info() tools_spec = args.tools # type: ignore targets = [] # type: list[str] + info('Current system platform: {}'.format(CURRENT_PLATFORM)) # Installing only single tools, no targets are specified. if 'required' in tools_spec: targets = add_and_save_targets(get_idf_env(), args.targets) - info('Selected targets are: {}' .format(', '.join(targets))) + info('Selected targets are: {}'.format(', '.join(targets))) if not tools_spec or 'required' in tools_spec: # Installing tools for all ESP_targets required by the operating system.