-
Notifications
You must be signed in to change notification settings - Fork 183
Make OpenMANIPULATOR_X workspace paths consistent by using absolute paths #1814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -18,7 +18,7 @@ This will ensure you have the latest and most compatible version for your system | |||||
#### Clone the Repository | ||||||
|
||||||
```bash | ||||||
$ mkdir -p ros2_ws/src | ||||||
$ mkdir -p ~/ros2_ws/src | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To make this command more robust, it's best to quote paths that use shell expansions like
Suggested change
|
||||||
$ cd ~/ros2_ws/src | ||||||
$ git clone -b jazzy https://github.com/ROBOTIS-GIT/DynamixelSDK.git && \ | ||||||
git clone -b jazzy https://github.com/ROBOTIS-GIT/dynamixel_interfaces.git && \ | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To improve the robustness of this command, it's a good practice to quote paths that involve shell expansions like
~
. This prevents errors if a user's home directory path contains spaces or other special characters.While this might be an edge case, quoting the path makes the instructions more reliable for all users and is a good defensive practice in shell commands.