dotfiles/home/profile
Hippolyte Chauvin 22aff9b2eb Ajout : profile
2023-09-12 22:58:57 +02:00

7 lines
127 B
Bash

# Add local bin to PATH
local_bin="$HOME/.local/bin"
if [ -d "$local_bin" ]; then
PATH="$local_bin:$PATH"
fi
unset local_bin