Skip to content

Commit 7182c99

Browse files
Ensure wget availability on bundle install (#75)
Signed-off-by: Michel Hidalgo <[email protected]>
1 parent 736c43b commit 7182c99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.tooling/scripts/install-bundle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5+
(cd apt && if [ -s packages.txt ]; then sudo apt update && sudo apt install wget python3-pip $(cat packages.txt); fi)
56
(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)
6-
(cd apt && if [ -s packages.txt ]; then sudo apt update && sudo apt install python3-pip $(cat packages.txt); fi)
77
(cd pip && if [ -s requirements.txt ]; then pip install -c constraint.txt -r requirements.txt; fi)
88
(cd rosdep && sudo cp -r * ${ROSDEP_SOURCE_PATH:-/etc/ros/rosdep}/. && rosdep update)

0 commit comments

Comments
 (0)