This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Onboarding the rosdep to ROS2 Rolling distro (#190)
* bootstrap rosdep for ROS2 Rolling. * adding msft_ros2_env. * fix the path. * change it to a proper maintainer alias. * reduce the file protocol to file:///
- Loading branch information
Showing
11 changed files
with
533 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@echo OFF | ||
|
||
:: copy all patch files to the installation | ||
xcopy /Y /S /I %~dp0patch %INSTALL_DIR% | ||
|
||
set PATH=%INSTALL_DIR%\Scripts;%INSTALL_DIR%;%INSTALL_DIR%\bin;%PATH% | ||
|
||
:: install required Python modules | ||
python -m pip config set global.disable-pip-version-check True | ||
python -m pip install -U git+https://github.com/ms-iot/rosdep@windows/0.20.0 | ||
|
||
:: bootstrap rosdep | ||
set ROS_ETC_DIR=%INSTALL_DIR%\etc\ros | ||
rosdep init | ||
rosdep update | ||
|
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
ros/rolling/patch/etc/ros/rosdep/sources.list.d/10-ms-iot.list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# os-specific listings first | ||
yaml file:///c:\opt\ros\rolling\x64\etc\ros\rosdep\windows.yaml windows |
Oops, something went wrong.