mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
Fix update-all input in dashboard (#826)
Fixes https://github.com/esphome/issues/issues/798
This commit is contained in:
parent
2d70422a6f
commit
603f82977e
1 changed files with 2 additions and 1 deletions
|
@ -371,7 +371,8 @@ def command_update_all(args):
|
|||
print("Updating {}".format(color('cyan', f)))
|
||||
print('-' * twidth)
|
||||
print()
|
||||
rc = run_external_process('esphome', '--dashboard', f, 'run', '--no-logs')
|
||||
rc = run_external_process('esphome', '--dashboard', f, 'run', '--no-logs', '--upload-port',
|
||||
'OTA')
|
||||
if rc == 0:
|
||||
print_bar("[{}] {}".format(color('bold_green', 'SUCCESS'), f))
|
||||
success[f] = True
|
||||
|
|
Loading…
Reference in a new issue