From 41e0f6286f0cb521fae8ac45730a2abccdd1303b Mon Sep 17 00:00:00 2001
From: Andres Montano <andres.montano@tecnalia.com>
Date: Thu, 9 Jan 2025 10:13:29 +0100
Subject: [PATCH] Fix solve warn about json args

---
 dockerfiles/devenv.Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dockerfiles/devenv.Dockerfile b/dockerfiles/devenv.Dockerfile
index a6c2b07..64c92ce 100644
--- a/dockerfiles/devenv.Dockerfile
+++ b/dockerfiles/devenv.Dockerfile
@@ -125,7 +125,7 @@ ENV RUNNING_IN_DOCKER=true
 
 # Define entrypoint and command
 ENTRYPOINT ["/ros_entrypoint.sh"]
-CMD $EXT_SHELL
+CMD ["$EXT_SHELL"]
 
 # Switch back to dialog for any ad-hoc use of apt-get
 ENV DEBIAN_FRONTEND=
@@ -206,7 +206,7 @@ RUN if [ "$CONAN" = "install" ]; \
 RUN rm -rf *
 
 # Update this date to re-run the image final update
-LABEL image.date=19-12-2024
+LABEL image.date=09-01-2025
 
 # Update final image
 RUN apt-get update \
@@ -219,4 +219,4 @@ ENV DEBIAN_FRONTEND=
 
 # Define entrypoint and command
 ENTRYPOINT ["/ros_entrypoint.sh"]
-CMD $EXT_SHELL
+CMD ["$EXT_SHELL"]
-- 
GitLab