mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Merge pull request #3947 from mkwmms/patch-1
Respect $ZSH_CACHE_DIR when creating fasd's cache
This commit is contained in:
commit
31b351ce4c
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
if [ $commands[fasd] ]; then # check if fasd is installed
|
if [ $commands[fasd] ]; then # check if fasd is installed
|
||||||
fasd_cache="$HOME/.fasd-init-cache"
|
fasd_cache="${ZSH_CACHE_DIR}/fasd-init-cache"
|
||||||
if [ "$(command -v fasd)" -nt "$fasd_cache" -o ! -s "$fasd_cache" ]; then
|
if [ "$(command -v fasd)" -nt "$fasd_cache" -o ! -s "$fasd_cache" ]; then
|
||||||
fasd --init auto >| "$fasd_cache"
|
fasd --init auto >| "$fasd_cache"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue