Skip to content

Commit

Permalink
Update /etc/skel/.bashrc to expand $HOME path
Browse files Browse the repository at this point in the history
  • Loading branch information
acerspyro authored and taukakao committed Jan 3, 2025
1 parent 92fedd4 commit 8f2396b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes.container/etc/skel/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ if [ -x /usr/bin/dircolors ]; then
alias ls='ls --color=auto'
fi

# extend $PATH to read from ~/.local/bin so the user finds their
# own binaries
export PATH="~/.local/bin":$PATH
# Prepend ~/.local/bin to the PATH in order to give precedence to user-installed
# executables.
export PATH="$HOME/.local/bin:$PATH"

# !!! LOOKING FOR CUSTOM ALIASES? !!!
# You may want to put all your additions into a separate file like
Expand Down

0 comments on commit 8f2396b

Please sign in to comment.