Skip to content

Commit

Permalink
autobuild and first node
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulgoel873 committed Oct 16, 2024
1 parent 01bb6bd commit c55cd63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ RUN pip3 install -r python-requirements.txt


RUN echo 'source "/opt/ros/humble/setup.bash" --' >> ~/.bashrc && \
echo 'cd rb_ws' >> ~/.bashrc
echo 'cd rb_ws' >> ~/.bashrc && \
echo 'colcon build --symlink-install' >> ~/.bashrc && \
echo 'source install/local_setup.bash' >> ~/.bashrc
# RUN echo 'source "/opt/ros/humble/setup.bash" --' >> ~/.bashrc && \
# echo 'cd rb_ws' >> ~/.bashrc && \
# echo 'catkin_make >/dev/null' >> ~/.bashrc && \
Expand Down
2 changes: 1 addition & 1 deletion rb_ws/src/buggy/buggy/hello_world.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
def main():
print('Hi from buggy.')
print('Hi from buggy. Hello again')


if __name__ == '__main__':
Expand Down

0 comments on commit c55cd63

Please sign in to comment.