File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -108,9 +108,9 @@ jobs:
108108 if [[ "${{ matrix.ros_distro }}" == "jazzy" || \
109109 "${{ matrix.ros_distro }}" == "kilted" || \
110110 "${{ matrix.ros_distro }}" == "rolling" ]]; then
111- pip3 install --break-system-packages -e .
111+ pip3 install --break-system-packages --ignore-installed pygments - e .
112112 else
113- pip3 install -e .
113+ pip3 install --ignore-installed pygments - e .
114114 fi
115115 shell : bash
116116
Original file line number Diff line number Diff line change 1919
2020# Build Debian packages for greenwave_monitor
2121#
22- # This script builds .deb packages for greenwave_monitor_interfaces, greenwave_monitor, and r2s_gw
22+ # This script builds .deb packages for greenwave_monitor_interfaces and greenwave_monitor
2323#
2424# Usage: ./scripts/build_debian_packages.sh [ROS_DISTRO] [UBUNTU_DISTRO]
2525# Examples:
@@ -139,7 +139,7 @@ source /opt/ros/$ROS_DISTRO/setup.bash
139139
140140# Build workspace first
141141echo " Building workspace..."
142- colcon build --packages-up-to r2s_gw
142+ colcon build --packages-up-to greenwave_monitor
143143source install/setup.bash
144144
145145# Setup rosdep mappings
@@ -217,12 +217,8 @@ else
217217 echo " Warning: greenwave_monitor directory not found, skipping"
218218fi
219219
220- # 3. Build r2s_gw
221- if [ -d " r2s_gw" ]; then
222- build_debian_package " r2s_gw" " r2s_gw"
223- else
224- echo " Warning: r2s_gw directory not found, skipping"
225- fi
220+ # Note: r2s_gw is now a separate repository and not included in debian packages
221+ # Users should install r2s_gw from source if they want the rich TUI
226222
227223echo " =================================="
228224echo " Debian package generation complete!"
You can’t perform that action at this time.
0 commit comments