Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename post_build scripts to fix codeowners script #3057

Merged
merged 1 commit into from Jan 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion esphome/components/esp32/__init__.py
Expand Up @@ -417,7 +417,7 @@ def copy_files():
)

dir = os.path.dirname(__file__)
post_build_file = os.path.join(dir, "post_build.py")
post_build_file = os.path.join(dir, "post_build.py.script")
copy_file_if_changed(
post_build_file,
CORE.relative_build_path("post_build.py"),
Expand Down
2 changes: 1 addition & 1 deletion esphome/components/esp8266/__init__.py
Expand Up @@ -220,7 +220,7 @@ async def to_code(config):
def copy_files():

dir = os.path.dirname(__file__)
post_build_file = os.path.join(dir, "post_build.py")
post_build_file = os.path.join(dir, "post_build.py.script")
copy_file_if_changed(
post_build_file,
CORE.relative_build_path("post_build.py"),
Expand Down