From 5ee72a2477359117444f558888ddd3249de701e9 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Mon, 28 Jun 2021 21:49:25 +0200 Subject: [PATCH] switch argument order (#1280) `esphome` told me: ``` WARNING Calling ESPHome with the configuration before the command is deprecated and will be removed in the future. WARNING Please instead use: WARNING esphome wizard livingroom.yaml ``` --- guides/getting_started_command_line.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/getting_started_command_line.rst b/guides/getting_started_command_line.rst index 7401e2825..0be015669 100644 --- a/guides/getting_started_command_line.rst +++ b/guides/getting_started_command_line.rst @@ -38,7 +38,7 @@ file called ``livingroom.yaml``: .. code-block:: bash - esphome livingroom.yaml wizard + esphome wizard livingroom.yaml # On Docker: docker run --rm -v "${PWD}":/config -it esphome/esphome wizard livingroom.yaml