1
0
Fork 0

Zsh: Make fpath assignment safer

This commit is contained in:
tastytea 2022-03-26 18:21:00 +01:00
parent b91611f771
commit 0c0beeb071
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ case $(hostname) in
esac
[[ -f "${ZDOTDIR}"/zsecrets ]] && source "${ZDOTDIR}"/zsecrets
[[ -d "${ZDOTDIR}"/functions ]] && fpath+="${ZDOTDIR}"/functions && export fpath
[[ -d "${ZDOTDIR}"/functions ]] && fpath+=( "${ZDOTDIR}"/functions ) && export fpath
############################# Daemons ##########################################