1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

zsh: use explicit source instead of .

This commit is contained in:
Daiderd Jordan 2017-05-13 15:24:13 +02:00
parent 1c30a6ab2d
commit 6b1e73adb1
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -135,7 +135,7 @@ in
# Read system-wide modifications.
if test -f /etc/zshenv.local; then
. /etc/zshenv.local
source /etc/zshenv.local
fi
'';
@ -153,7 +153,7 @@ in
# Read system-wide modifications.
if test -f /etc/zprofile.local; then
. /etc/zprofile.local
source /etc/zprofile.local
fi
'';
@ -201,7 +201,7 @@ in
# Read system-wide modifications.
if test -f /etc/zshrc.local; then
. /etc/zshrc.local
source /etc/zshrc.local
fi
'';