Compare commits

...

3 Commits

View File

@ -39,6 +39,11 @@ if [ -z "$__PROFILE_DONE" ]; then
. $HOME/.profile
fi
# Source .env to extend with secret/sensitive environment variables if it exists
if [ -r "$HOME/.env" ]; then
. "$HOME/.env"
fi
# Source aliases, if they exist
if [ -f "$HOME/.aliases" ] && [ -r "$HOME/.aliases" ]; then