From ae6aefaf97430fbf0fb0a9402809e8645bce7179 Mon Sep 17 00:00:00 2001 From: Rodrigo Queiro Date: Thu, 9 Nov 2017 13:36:40 +0100 Subject: [PATCH] Don't `set -o verbose` in ros_entrypoint.sh (#558) All it does is source some large scripts, which results in lots of logspam when the container starts up. It then runs exec, after which the `verbose` setting has no effect. --- scripts/ros_entrypoint.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/ros_entrypoint.sh b/scripts/ros_entrypoint.sh index 1c63688..56b3291 100755 --- a/scripts/ros_entrypoint.sh +++ b/scripts/ros_entrypoint.sh @@ -15,7 +15,6 @@ # limitations under the License. set -o errexit -set -o verbose source "/opt/ros/${ROS_DISTRO}/setup.bash" source "/opt/cartographer_ros/setup.bash"