Skip to content

Commit

Permalink
only print stdout for package removing
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbusch committed Oct 11, 2023
1 parent 4f32674 commit 54df86f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ RUN echo "colcon list -p --base-paths src/ --packages-select \\" >> $WORKSPACE/.
fi && \
echo ";" >> $WORKSPACE/.remove-packages.sh && \
chmod +x $WORKSPACE/.remove-packages.sh && \
$WORKSPACE/.remove-packages.sh | xargs rm -rf
$WORKSPACE/.remove-packages.sh 2> /dev/null | xargs rm -rf
# create install script with list of rosdep dependencies
RUN echo "set -e" >> $WORKSPACE/.install-dependencies.sh && \
Expand Down

0 comments on commit 54df86f

Please sign in to comment.