Source distrobox-specific paths, if available
This commit is contained in:
parent
e964ad2de2
commit
4ff0387bf0
|
@ -0,0 +1,5 @@
|
|||
# vim: ft=sh
|
||||
|
||||
if [ -f "$HOME/.dotfiles/bash/path.distrobox" ]; then
|
||||
source "$HOME/.dotfiles/bash/path.distrobox"
|
||||
fi
|
|
@ -1,2 +1,5 @@
|
|||
# vim: ft=sh
|
||||
|
||||
#
|
||||
if [ -f "$HOME/.dotfiles/bash/path.host" ]; then
|
||||
source "$HOME/.dotfiles/bash/path.host"
|
||||
fi
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
# vim: ft=sh
|
||||
|
||||
if [ -f "$HOME/.dotfiles/bash/path.$DISTROBOX" ]; then
|
||||
source $HOME/.dotfiles/bash/path.$DISTROBOX
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue