Skip to content

Commit

Permalink
fix legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-luedtke committed Sep 3, 2020
1 parent 63a5d88 commit 5c01008
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# install packages
RUN apt-get update && apt-get install -y --no-install-recommends \
@(' \\\n '.join(packages))@ \
@(' \\\n '.join(ros_packages))@ \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /var/lib/apt/lists/partial

Expand All @@ -48,7 +48,7 @@ ENV LANG en_US.UTF-8
# install ros packages
ENV ROS_DISTRO @rosdistro_name
RUN apt-get update && apt-get install -y \
@(' \\\n '.join(ros_packages))@ \
@(' \\\n '.join('{name}{version}'.format(**p) for p in packages))@ \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /var/lib/apt/lists/partial

Expand Down

0 comments on commit 5c01008

Please sign in to comment.