66e0d57bb8
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/zsh#a734556f332d344616d8d48c25ea56ae6e197376
23 lines
375 B
Plaintext
23 lines
375 B
Plaintext
#
|
|
# /etc/zprofile and ~/.zprofile are run for login shells
|
|
#
|
|
|
|
PATH="$PATH:$HOME/bin"
|
|
export PATH
|
|
|
|
_src_etc_profile()
|
|
{
|
|
# Make /etc/profile happier, and have possible ~/.zshenv options like
|
|
# NOMATCH ignored.
|
|
#
|
|
emulate -L ksh
|
|
|
|
# source profile
|
|
if [ -f /etc/profile ]; then
|
|
source /etc/profile
|
|
fi
|
|
}
|
|
_src_etc_profile
|
|
|
|
unset -f _src_etc_profile
|