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 10, 2023
1 parent c2a7ae2 commit e2e6721
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 @@ -73,7 +73,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
# TODO: only keep whitelist packages in workspace
Expand Down

0 comments on commit e2e6721

Please sign in to comment.