File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,17 @@ if (([string]::IsNullOrEmpty($Env:ROS_DISTRO)))
8
8
9
9
$ros2cs_repos = Join-Path - Path $scriptPath - ChildPath " \ros2cs.repos"
10
10
$custom_repos = Join-Path - Path $scriptPath - ChildPath " \ros2_for_unity_custom_messages.repos"
11
+
12
+ Write-Host " ========================================="
13
+ Write-Host " * Pulling ros2cs repository:"
11
14
vcs import -- input $ros2cs_repos
15
+
16
+ Write-Host " "
17
+ Write-Host " ========================================="
18
+ Write-Host " Pulling custom repositories:"
12
19
vcs import -- input $custom_repos
13
20
21
+ Write-Host " "
22
+ Write-Host " ========================================="
23
+ Write-Host " Pulling ros2cs dependencies:"
14
24
& " $scriptPath /src/ros2cs/get_repos.ps1"
Original file line number Diff line number Diff line change @@ -8,8 +8,18 @@ if [ -z "${ROS_DISTRO}" ]; then
8
8
exit 1
9
9
fi
10
10
11
+ echo " ========================================="
12
+ echo " * Pulling ros2cs repository:"
11
13
vcs import < " ros2cs.repos"
14
+
15
+ echo " "
16
+ echo " ========================================="
17
+ echo " Pulling custom repositories:"
12
18
vcs import < " ros2_for_unity_custom_messages.repos"
19
+
20
+ echo " "
21
+ echo " ========================================="
22
+ echo " Pulling ros2cs dependencies:"
13
23
cd " $SCRIPTPATH /src/ros2cs"
14
24
./get_repos.sh
15
25
cd -
Original file line number Diff line number Diff line change 1
1
# NOTE: Use this file if you want to build with custom messages that reside in a separate remote repo.
2
2
# NOTE: use the following format
3
3
4
- # repositories:
4
+ repositories:
5
5
# src/ros2cs/custom_messages/<package_name>:
6
6
# type: git
7
7
# url: <repo_url>
You can’t perform that action at this time.
0 commit comments