initial package creation

Signed-off-by: Toshaan Bharvani <toshaan@powerel.org>
master
Toshaan Bharvani 2024-05-22 16:57:14 +02:00
parent 33b2a0f985
commit 93449084e4
1 changed files with 22 additions and 0 deletions

22
SOURCES/zprofile.rhs Normal file
View File

@ -0,0 +1,22 @@
#
# /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