Skip to content

Commit

Permalink
Replace eloquent with foxy in the install scripts (#1806)
Browse files Browse the repository at this point in the history
* Changing eloquent to foxy

* Replace eloquent with foxy in build_all script
  • Loading branch information
shivaang12 authored Jun 16, 2020
1 parent 94615e7 commit dd0d9fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions tools/build_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
# set at the time we start the last step, the ros1_bridge build.

if [ "$ROS2_DISTRO" = "" ]; then
export ROS2_DISTRO=eloquent
export ROS2_DISTRO=foxy
fi
if [ "$ROS2_DISTRO" != "eloquent" ]; then
echo "ROS2_DISTRO variable must be set to eloquent"
if [ "$ROS2_DISTRO" != "foxy" ]; then
echo "ROS2_DISTRO variable must be set to foxy"
exit 1
fi

Expand Down
8 changes: 4 additions & 4 deletions tools/initial_ros_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ ENABLE_BUILD=true
ENABLE_ROS2=true

if [ "$ROS2_DISTRO" = "" ]; then
export ROS2_DISTRO=eloquent
export ROS2_DISTRO=foxy
fi
if [ "$ROS2_DISTRO" != "eloquent" ]; then
echo "ROS2_DISTRO variable must be set to eloquent"
if [ "$ROS2_DISTRO" != "foxy" ]; then
echo "ROS2_DISTRO variable must be set to foxy"
exit 1
fi

Expand All @@ -24,7 +24,7 @@ for opt in "$@" ; do
*)
echo "Invalid option: $opt"
echo "Valid options:"
echo "--no-ros2 Uses the binary distribution of ROS2 eloquent"
echo "--no-ros2 Uses the binary distribution of ROS2 foxy"
echo "--download-only Skips the build step and only downloads the code"
exit 1
;;
Expand Down

0 comments on commit dd0d9fd

Please sign in to comment.