Integrate machine-specific ENV variables
~/.profile_local can now be used to define machine-specific ENV variables and other shell initialization logic.
This commit is contained in:
parent
6e0c93760a
commit
5edfc00f08
1 changed files with 6 additions and 0 deletions
6
.profile
6
.profile
|
@ -78,3 +78,9 @@ if [ -n "$BASH_VERSION" ]; then
|
||||||
source "$HOME/.bashrc"
|
source "$HOME/.bashrc"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Source ~/.profile_local, which holds machine-specific ENV variables
|
||||||
|
if [ -f "$HOME/.profile_local" ]; then
|
||||||
|
source "$HOME/.profile_local"
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue