From 56c21d460c64a8f21d1cfe47730eafabfe690c77 Mon Sep 17 00:00:00 2001 From: Tom J Nowell Date: Fri, 28 Jul 2017 20:01:16 +0100 Subject: [PATCH] =?UTF-8?q?running=20the=20`brew`=20command=20on=20MacOS?= =?UTF-8?q?=20with=20`sudo`=20will=20cause=20errors,=20th=E2=80=A6=20(#307?= =?UTF-8?q?2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * running the `brew` command on MacOS with `sudo` will cause errors, this commit removes sudo * infact no sudo is necessary at all under MacOS, it might even be harmful --- source/_components/tradfri.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_components/tradfri.markdown b/source/_components/tradfri.markdown index 8bd6a2af081..7145cedc4f3 100644 --- a/source/_components/tradfri.markdown +++ b/source/_components/tradfri.markdown @@ -35,15 +35,15 @@ $ sudo make install macOS: ```bash -$ sudo brew install libtool -$ sudo brew install autoconf -$ sudo brew install automake +$ brew install libtool +$ brew install autoconf +$ brew install automake $ git clone --depth 1 --recursive -b dtls https://github.com/home-assistant/libcoap.git $ cd libcoap $ ./autogen.sh $ ./configure --disable-documentation --disable-shared --without-debug CFLAGS="-D COAP_DEBUG_FD=stderr" $ make -$ sudo make install +$ make install ``` You will be prompted to configure the gateway through the Home Assistant interface, Enter the security key when prompted and click configure