From 3dfd3a4c21d39c8d5b908e10c0a6be2c7ff0accc Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 12 Mar 2024 10:12:35 +0100 Subject: [PATCH] Start HA CLI interactively and with a tty allocated (#3238) Use -i (--interactive) and -t (--tty) to start the HA CLI interactively. This is required by some commands like the new device wipe command added with https://github.com/home-assistant/cli/pull/464. (cherry picked from commit fe1978f98fab65f52676590e6c8e60716497d551) --- buildroot-external/rootfs-overlay/usr/bin/ha | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildroot-external/rootfs-overlay/usr/bin/ha b/buildroot-external/rootfs-overlay/usr/bin/ha index f4e49f932..351d59742 100755 --- a/buildroot-external/rootfs-overlay/usr/bin/ha +++ b/buildroot-external/rootfs-overlay/usr/bin/ha @@ -3,4 +3,4 @@ # HA utility # ============================================================================== -docker exec hassio_cli ha "$@" +docker exec -it hassio_cli ha "$@"