mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	[CI] Use a list when reading idedata for includes (#7535)
This commit is contained in:
		| @@ -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 set(idedata["includes"]["build"]): |     for directory in list(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}/") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user