.profile: Source in site-specific profile

This commit is contained in:
Salt 2020-04-03 03:41:15 -05:00
parent ada26e430b
commit 38a0533fd7

View File

@ -366,3 +366,9 @@ unset gnubin
unset -v _baseshell
unset -f has
# Source in a site-specific profile
localprofile="$HOME/.local/profile"
if [ -f "$localprofile" ]; then
. "$localprofile"
fi