2022-05-23 03:34:11 +00:00
|
|
|
# set PATH so it includes user's private bin if it exists
|
2022-05-29 00:08:37 +00:00
|
|
|
if [[ -d "$HOME/bin" ]] ; then
|
2022-05-23 03:34:11 +00:00
|
|
|
export PATH="~/bin:$PATH"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
2022-05-29 00:08:37 +00:00
|
|
|
if [[ -d "$HOME/.local/bin" ]] ; then
|
2022-05-23 03:34:11 +00:00
|
|
|
export PATH="~/.local/bin:$PATH"
|
|
|
|
fi
|