mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 23:48:11 +01:00
[CI] Remove `sorted
` from library include dirs (#7526)
This commit is contained in:
parent
68928aee7c
commit
215f26fbe4
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ def clang_options(idedata):
|
||||||
cmd.extend(["-isystem", directory])
|
cmd.extend(["-isystem", directory])
|
||||||
|
|
||||||
# add library include directories using -isystem to suppress their errors
|
# add library include directories using -isystem to suppress their errors
|
||||||
for directory in sorted(set(idedata["includes"]["build"])):
|
for directory in set(idedata["includes"]["build"]):
|
||||||
# skip our own directories, we add those later
|
# skip our own directories, we add those later
|
||||||
if (
|
if (
|
||||||
not directory.startswith(f"{root_path}/")
|
not directory.startswith(f"{root_path}/")
|
||||||
|
|
Loading…
Reference in a new issue