workstation/roles/home-cli/files/zprofile

10 lines
134 B
Bash

#!/bin/zsh
if [ -r "$HOME/.profile" ]
then
emulate sh -c '. "$HOME/.profile"'
fi
if [ -r "$HOME/.zshrc" ]
then
. "$HOME/.zshrc"
fi