1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-06 13:22:19 +01:00

Fix some issues with deprecated argv syntax detection (#2127)

This commit is contained in:
Otto Winter
2021-08-10 03:27:21 +02:00
committed by GitHub
parent 06bde559da
commit 1f42d32eb5
2 changed files with 3 additions and 2 deletions

View File

@@ -408,7 +408,7 @@ def command_update_all(args):
print("-" * twidth)
print()
rc = run_external_process(
"esphome", "--dashboard", "run", "--no-logs", "--device", "OTA", f
"esphome", "--dashboard", "run", f, "--no-logs", "--device", "OTA"
)
if rc == 0:
print_bar("[{}] {}".format(color(Fore.BOLD_GREEN, "SUCCESS"), f))
@@ -505,6 +505,7 @@ def parse_args(argv):
"clean",
"dashboard",
"vscode",
"update-all",
],
)