From b2bc3ddb9a1b186ce4e7a73aac24e1ec942465fc Mon Sep 17 00:00:00 2001 From: JafarAbdi Date: Wed, 28 Apr 2021 13:53:33 +0300 Subject: [PATCH] Fix bug caused by colcon when building with symlinks --- travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis.sh b/travis.sh index 1b55f49..a6180e7 100755 --- a/travis.sh +++ b/travis.sh @@ -213,7 +213,7 @@ function prepare_ros_workspace() { # Link in the repo we are testing if it's not a subdirectory of this workspace if [ "${CI_SOURCE_PATH##$PWD}" == $CI_SOURCE_PATH ] ; then - travis_run_simple --title "Symlinking to-be-tested repo $CI_SOURCE_PATH into ROS workspace" ln -s $CI_SOURCE_PATH . + travis_run_simple --title "Copying to-be-tested repo $CI_SOURCE_PATH into ROS workspace" cp -r $CI_SOURCE_PATH . fi # Download all upstream packages into folder upstream to prevent name conflicts