mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
parent
97f2becc9e
commit
9d65b77f13
1 changed files with 2 additions and 2 deletions
|
@ -315,7 +315,7 @@ def copy_src_tree():
|
|||
continue
|
||||
# Transform path to target path name
|
||||
target = os.path.relpath(path, CORE.relative_src_path()).replace(os.path.sep, '/')
|
||||
if target == DEFINES_H_TARGET:
|
||||
if target in (DEFINES_H_TARGET, VERSION_H_TARGET):
|
||||
# Ignore defines.h, will be dealt with later
|
||||
continue
|
||||
if target not in source_files_copy:
|
||||
|
@ -341,7 +341,7 @@ def copy_src_tree():
|
|||
write_file_if_changed(ESPHOME_H_FORMAT.format(include_s),
|
||||
CORE.relative_src_path('esphome.h'))
|
||||
write_file_if_changed(VERSION_H_FORMAT.format(__version__),
|
||||
CORE.relative_src_path('esphome' 'core', 'version.h'))
|
||||
CORE.relative_src_path('esphome', 'core', 'version.h'))
|
||||
|
||||
|
||||
def generate_defines_h():
|
||||
|
|
Loading…
Reference in a new issue