mirror of
https://github.com/protesilaos/dotfiles.git
synced 2026-09-10 07:16:20 -04:00
.bashrc and .profile: add PATH for local binaries
These are programs I build from source and want to keep in my local user instead of installing them at the system level.
This commit is contained in:
parent
e467490ca6
commit
82a4a90e98
|
|
@ -29,6 +29,11 @@ then
|
|||
PATH=$PATH:"$HOME"/.local/bin
|
||||
fi
|
||||
|
||||
if [ -d "$HOME"/Builds/bin ]
|
||||
then
|
||||
PATH=$PATH:"$HOME"/Builds/bin
|
||||
fi
|
||||
|
||||
if [ -d "/var/lib/flatpak/exports/bin" ]
|
||||
then
|
||||
PATH=$PATH:"/var/lib/flatpak/exports/bin"
|
||||
|
|
|
|||
|
|
@ -45,6 +45,11 @@ if [ -d "$HOME"/.local/bin ]; then
|
|||
PATH=$PATH:"$HOME"/.local/bin
|
||||
fi
|
||||
|
||||
if [ -d "$HOME"/Builds/bin ]
|
||||
then
|
||||
PATH=$PATH:"$HOME"/Builds/bin
|
||||
fi
|
||||
|
||||
##########################
|
||||
# Environment essentials #
|
||||
##########################
|
||||
|
|
|
|||
Loading…
Reference in a new issue