-
Notifications
You must be signed in to change notification settings - Fork 47
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
Pull Request for ROS2-Jazzy Dockerfile #470
base: main
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"files.eol": "\n", | ||
"python.defaultInterpreterPath": "/usr/bin/python3", | ||
"editor.rulers": [80] | ||
} |
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. Why were these files deleted? 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. I only need the Dockerfiles related to ROS2, so I deleted ros. If it's necessary to add them back later, I'll do so. |
This file was deleted.
This file was deleted.
This file was deleted.
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.
What does this do?
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.
I encountered a problem with line endings on Linux and Windows. Unix-based systems, like Linux and macOS, use the LF (Line Feed) character for line breaks by default. However, Windows is different and uses both CR (Carriage Return) and LF (Line Feed) characters for line breaks.
To solve this, I added a line of code to ensure that the line endings are always set to LF. This approach works on both Linux and Windows without any issues.