mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Toggle Auto-Update Check With Environment Variable (#292)
This commit is contained in:
parent
00ff99cc7d
commit
5db70bea3c
1 changed files with 5 additions and 2 deletions
|
@ -151,8 +151,11 @@ def write_cpp(config):
|
|||
|
||||
def compile_program(args, config):
|
||||
_LOGGER.info("Compiling app...")
|
||||
update_check = not os.getenv('ESPHOMEYAML_NO_UPDATE_CHECK', False)
|
||||
if update_check:
|
||||
thread = start_update_check_thread(esphomeyaml_storage_path(CORE.config_dir))
|
||||
rc = platformio_api.run_compile(config, args.verbose)
|
||||
if update_check:
|
||||
thread.join()
|
||||
return rc
|
||||
|
||||
|
|
Loading…
Reference in a new issue