Skip to content

Commit

Permalink
feat(aloha_ws): Add ~/.profile paths to allow direct use of `isaacs…
Browse files Browse the repository at this point in the history
…im` CLI
  • Loading branch information
j3soon committed Sep 6, 2024
1 parent e231357 commit e40456b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions aloha_ws/docker/.bashrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Setup paths in `~/.profile` to allow unified environment variable across login/non-login shells
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
# Source global ROS2 environment
source /opt/ros/$ROS_DISTRO/setup.bash
# Optionally perform apt update if it has not been executed yet
Expand Down

0 comments on commit e40456b

Please sign in to comment.