mirror of
https://github.com/esphome/esphome.git
synced 2024-11-02 08:40:55 +01:00
f811b1157c
* Update CI matcher * Check Executable bit * Quicklint * Updates * Allow pm1.0 and pm10.0 for PMS5003ST Fixes https://github.com/esphome/feature-requests/issues/225 * PowerSupplyRequester * Lint * Include debug data in generated main.cpp * Updates * Auto-select bit_depth * Updates
17 lines
280 B
Python
Executable File
17 lines
280 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
import os.path
|
|
|
|
sys.path.append(os.path.dirname(__file__))
|
|
from helpers import build_all_include, build_compile_commands
|
|
|
|
|
|
def main():
|
|
build_all_include()
|
|
build_compile_commands()
|
|
print("Done.")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|