remove package not working

This commit is contained in:
Sem van der Hoeven
2023-04-19 10:04:22 +00:00
parent c9c2add7c7
commit f6b74583c7
9136 changed files with 562508 additions and 596632 deletions

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/tracker_position

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/beacon_positioning

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_index/share/ament_index/resource_index/packages/beacon_positioning

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/beacon_positioning

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_core/beacon_positioningConfig-version.cmake

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_core/beacon_positioningConfig.cmake

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_environment_hooks/ament_prefix_path.dsv

View File

@@ -1 +0,0 @@
/opt/ros/foxy/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_environment_hooks/path.dsv

View File

@@ -1 +0,0 @@
/opt/ros/foxy/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh

View File

@@ -1 +0,0 @@
prepend-non-duplicate;CMAKE_PREFIX_PATH;

View File

@@ -1,3 +0,0 @@
# generated from colcon_powershell/shell/template/hook_prepend_value.ps1.em
colcon_prepend_unique_value CMAKE_PREFIX_PATH "$env:COLCON_CURRENT_PREFIX"

View File

@@ -1,3 +0,0 @@
# generated from colcon_core/shell/template/hook_prepend_value.sh.em
_colcon_prepend_unique_value CMAKE_PREFIX_PATH "$COLCON_CURRENT_PREFIX"

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/src/beacon_positioning/launch/beacon_positioning_launch.py

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_environment_hooks/local_setup.bash

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_environment_hooks/local_setup.dsv

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_environment_hooks/local_setup.sh

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/build/beacon_positioning/ament_cmake_environment_hooks/local_setup.zsh

View File

@@ -27,13 +27,5 @@ _colcon_package_bash_source_script() {
# source sh script of this package
_colcon_package_bash_source_script "$_colcon_package_bash_COLCON_CURRENT_PREFIX/share/beacon_positioning/package.sh"
# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts
COLCON_CURRENT_PREFIX="$_colcon_package_bash_COLCON_CURRENT_PREFIX"
# source bash hooks
_colcon_package_bash_source_script "$COLCON_CURRENT_PREFIX/share/beacon_positioning/local_setup.bash"
unset COLCON_CURRENT_PREFIX
unset _colcon_package_bash_source_script
unset _colcon_package_bash_COLCON_CURRENT_PREFIX

View File

@@ -1,8 +0,0 @@
source;share/beacon_positioning/hook/cmake_prefix_path.ps1
source;share/beacon_positioning/hook/cmake_prefix_path.dsv
source;share/beacon_positioning/hook/cmake_prefix_path.sh
source;share/beacon_positioning/local_setup.bash
source;share/beacon_positioning/local_setup.dsv
source;share/beacon_positioning/local_setup.ps1
source;share/beacon_positioning/local_setup.sh
source;share/beacon_positioning/local_setup.zsh

View File

@@ -106,11 +106,3 @@ function colcon_package_source_powershell_script {
}
# a powershell script is able to determine its own path
# the prefix is two levels up from the package specific share directory
$env:COLCON_CURRENT_PREFIX=(Get-Item $PSCommandPath).Directory.Parent.Parent.FullName
colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/beacon_positioning/hook/cmake_prefix_path.ps1"
colcon_package_source_powershell_script "$env:COLCON_CURRENT_PREFIX\share/beacon_positioning/local_setup.ps1"
Remove-Item Env:\COLCON_CURRENT_PREFIX

View File

@@ -49,39 +49,4 @@ _colcon_prepend_unique_value() {
unset _listname
}
# since a plain shell script can't determine its own path when being sourced
# either use the provided COLCON_CURRENT_PREFIX
# or fall back to the build time prefix (if it exists)
_colcon_package_sh_COLCON_CURRENT_PREFIX="/home/ubuntu/ros2_ws/install/beacon_positioning"
if [ -z "$COLCON_CURRENT_PREFIX" ]; then
if [ ! -d "$_colcon_package_sh_COLCON_CURRENT_PREFIX" ]; then
echo "The build time path \"$_colcon_package_sh_COLCON_CURRENT_PREFIX\" doesn't exist. Either source a script for a different shell or set the environment variable \"COLCON_CURRENT_PREFIX\" explicitly." 1>&2
unset _colcon_package_sh_COLCON_CURRENT_PREFIX
return 1
fi
COLCON_CURRENT_PREFIX="$_colcon_package_sh_COLCON_CURRENT_PREFIX"
fi
unset _colcon_package_sh_COLCON_CURRENT_PREFIX
# function to source another script with conditional trace output
# first argument: the path of the script
# additional arguments: arguments to the script
_colcon_package_sh_source_script() {
if [ -f "$1" ]; then
if [ -n "$COLCON_TRACE" ]; then
echo "# . \"$1\""
fi
. "$@"
else
echo "not found: \"$1\"" 1>&2
fi
}
# source sh hooks
_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/beacon_positioning/hook/cmake_prefix_path.sh"
_colcon_package_sh_source_script "$COLCON_CURRENT_PREFIX/share/beacon_positioning/local_setup.sh"
unset _colcon_package_sh_source_script
unset COLCON_CURRENT_PREFIX
# do not unset _colcon_prepend_unique_value since it might be used by non-primary shell hooks

View File

@@ -1 +0,0 @@
/home/ubuntu/ros2_ws/src/beacon_positioning/package.xml

View File

@@ -38,13 +38,5 @@ colcon_zsh_convert_to_array() {
_colcon_package_zsh_source_script "$_colcon_package_zsh_COLCON_CURRENT_PREFIX/share/beacon_positioning/package.sh"
unset convert_zsh_to_array
# setting COLCON_CURRENT_PREFIX avoids determining the prefix in the sourced scripts
COLCON_CURRENT_PREFIX="$_colcon_package_zsh_COLCON_CURRENT_PREFIX"
# source zsh hooks
_colcon_package_zsh_source_script "$COLCON_CURRENT_PREFIX/share/beacon_positioning/local_setup.zsh"
unset COLCON_CURRENT_PREFIX
unset _colcon_package_zsh_source_script
unset _colcon_package_zsh_COLCON_CURRENT_PREFIX

View File

@@ -1 +1 @@
rclcpp:std_msgs
rclcpp:rosidl_default_runtime:std_msgs