Skip to content

Commit

Permalink
Fix dependency fetching of ROS2 CEs
Browse files Browse the repository at this point in the history
  • Loading branch information
AAlon committed Mar 30, 2020
1 parent a3db95b commit c1935dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ros2_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ echo "repo: ${REPO_NAME} branch: ${TRAVIS_BRANCH}"
. "/opt/ros/${ROS_DISTRO}/setup.sh"

cd "/${ROS_DISTRO}_ws/"
if [ -f "./src/${REPO_NAME}/.rosinstall.master" ]; then
if [ "${TRAVIS_BRANCH}" == "master" ] && [ -f "./src/${REPO_NAME}/.rosinstall.master" ]; then
mkdir dep
cd "/${ROS_DISTRO}_ws/dep"
ln -s "../src/${REPO_NAME}/.rosinstall.master" .rosinstall
Expand Down

0 comments on commit c1935dc

Please sign in to comment.