mirror of
https://github.com/esphome/esphome.git
synced 2024-12-22 13:34:54 +01:00
Fix error print in script/helpers.py (#1935)
This commit is contained in:
parent
dca1c0f160
commit
f9a31c1abb
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ def build_all_include():
|
||||||
def build_compile_commands():
|
def build_compile_commands():
|
||||||
gcc_flags_json = os.path.join(root_path, ".gcc-flags.json")
|
gcc_flags_json = os.path.join(root_path, ".gcc-flags.json")
|
||||||
if not os.path.isfile(gcc_flags_json):
|
if not os.path.isfile(gcc_flags_json):
|
||||||
print("Could not find {} file which is required for clang-tidy.")
|
print("Could not find {} file which is required for clang-tidy.".format(gcc_flags_json))
|
||||||
print(
|
print(
|
||||||
'Please run "pio init --ide atom" in the root esphome folder to generate that file.'
|
'Please run "pio init --ide atom" in the root esphome folder to generate that file.'
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue