We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 736c43b commit 7182c99Copy full SHA for 7182c99
.tooling/scripts/install-bundle
@@ -2,7 +2,7 @@
2
3
set -e
4
5
+(cd apt && if [ -s packages.txt ]; then sudo apt update && sudo apt install wget python3-pip $(cat packages.txt); fi)
6
(cd apt && if [ -s files.txt ]; then sudo apt update && for url in $(cat files.txt); do wget $url && sudo apt install ./$(basename $url); done; fi)
-(cd apt && if [ -s packages.txt ]; then sudo apt update && sudo apt install python3-pip $(cat packages.txt); fi)
7
(cd pip && if [ -s requirements.txt ]; then pip install -c constraint.txt -r requirements.txt; fi)
8
(cd rosdep && sudo cp -r * ${ROSDEP_SOURCE_PATH:-/etc/ros/rosdep}/. && rosdep update)
0 commit comments