Append $HOME/bin to path if it exists
This commit is contained in:
parent
28e956691c
commit
fd32b5528b
1 changed files with 5 additions and 0 deletions
|
@ -46,6 +46,11 @@ path=(
|
|||
$path
|
||||
)
|
||||
|
||||
# set path so it includes user's private bin if it exists
|
||||
if [[ -d "$HOME/bin" ]]; then
|
||||
path+="$HOME/bin"
|
||||
fi
|
||||
|
||||
#
|
||||
# Less
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue