From 822f17f3e340de37645962966a68ad427202ec72 Mon Sep 17 00:00:00 2001 From: MrKevinWeiss Date: Mon, 6 Nov 2023 12:34:09 +0100 Subject: [PATCH] 08-interop: Fix contiki script for workflow --- 08-interop/compile_contiki.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/08-interop/compile_contiki.sh b/08-interop/compile_contiki.sh index db020eb..f77e271 100755 --- a/08-interop/compile_contiki.sh +++ b/08-interop/compile_contiki.sh @@ -19,7 +19,8 @@ fi # Compile the `examples/hello-world` application for the nRF52840 platform. export CNG_PATH=/tmp/contiki-ng docker run \ - --sysctl net.ipv6.conf.all.disable_ipv6=0 \ + -e LOCAL_UID=$(id -u $USER) \ + -e LOCAL_GID=$(id -g $USER) \ --mount type=bind,source=$CNG_PATH,destination=/home/user/contiki-ng \ contiker/contiki-ng \ make -C examples/hello-world TARGET=nrf52840 hello-world