From 8b05ca55c02736a9350a2c85b2947de82c4da69f Mon Sep 17 00:00:00 2001 From: benjaminwp18 <90342856+benjaminwp18@users.noreply.github.com> Date: Sat, 17 Feb 2024 18:55:34 +0000 Subject: [PATCH] Edit caching error message --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ffbaf91..e0e0461b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -90,7 +90,7 @@ ARG EXPECTED_OUTPUT="All system dependencies have been satisfied" # Checks that all rosdeps are installed. RUN if [[ $(rosdep check -r --from-paths src --ignore-src) != "${EXPECTED_OUTPUT}" ]]; \ - then echo "ROS deps not all installed. Trying adding another layer to COPY instruction for ROS deps."; \ + then echo "ROS deps not all installed. Try adding another /* directory layer to the COPY instruction labeled 'Copies in ROS deps'."; \ rosdep check -r --from-paths src --ignore-src; \ exit 1; \ fi