From e994cbfa73da18120938a2342f587ec125510819 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Mon, 12 Aug 2024 12:42:00 -0400 Subject: [PATCH] Fix typo in NXP dockerfile: missing backslash (#34931) --- integrations/docker/images/stage-2/chip-build-k32w/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/docker/images/stage-2/chip-build-k32w/Dockerfile b/integrations/docker/images/stage-2/chip-build-k32w/Dockerfile index d1b162e66c9797..d70fcd4bb2fe9d 100644 --- a/integrations/docker/images/stage-2/chip-build-k32w/Dockerfile +++ b/integrations/docker/images/stage-2/chip-build-k32w/Dockerfile @@ -28,7 +28,7 @@ RUN set -x \ RUN set -x \ && mkdir -p k32w1/repo \ - && cd k32w1/repo + && cd k32w1/repo \ && west init -m https://github.com/nxp-mcuxpresso/mcux-sdk --mr "MCUX_2.16.000" \ && west update -o=--depth=1 -n -f smart \ && cd - \