Skip to content
Snippets Groups Projects
Commit b7bb3977 authored by Montaño Sarria, Andres Felipe's avatar Montaño Sarria, Andres Felipe
Browse files

FIx pip install not running without xargs input

parent cde1b250
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,7 @@ RUN if [ -f "${ROS_DISTRO}_requirements.txt" ]; \
# Install pip packages
RUN if [ -f "${ROS_DISTRO}_requirements.txt" ]; \
then \
awk '/^# PIP PACKAGES/,0' ${ROS_DISTRO}_requirements.txt | grep -v '^#' | xargs -n1 pip install ;\
awk '/^# PIP PACKAGES/,0' ${ROS_DISTRO}_requirements.txt | grep -v '^#' | xargs -r -n1 pip install ;\
fi
RUN rm -rf *
......@@ -130,7 +130,7 @@ RUN rm -rf *
RUN apt-get --reinstall install -y libnotify-bin notify-osd
# Update this date to re-run the image final update
LABEL image.date=31-10-2023
LABEL image.date=17-11-2023
# Update final image
RUN apt-get update \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment