Source distrobox-specific paths, if available

This commit is contained in:
John Mertz 2024-01-31 21:55:28 -07:00
parent e964ad2de2
commit 4ff0387bf0
3 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,5 @@
# vim: ft=sh
if [ -f "$HOME/.dotfiles/bash/path.distrobox" ]; then
source "$HOME/.dotfiles/bash/path.distrobox"
fi

View File

@ -1,2 +1,5 @@
# vim: ft=sh # vim: ft=sh
#
if [ -f "$HOME/.dotfiles/bash/path.host" ]; then
source "$HOME/.dotfiles/bash/path.host"
fi

View File

@ -1 +1,5 @@
# vim: ft=sh # vim: ft=sh
if [ -f "$HOME/.dotfiles/bash/path.$DISTROBOX" ]; then
source $HOME/.dotfiles/bash/path.$DISTROBOX
fi