mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
fix(heroku): fix XDG cache directory name and code style (#10436)
This commit is contained in:
parent
52a46ec362
commit
b7fb0a55c0
1 changed files with 8 additions and 8 deletions
|
@ -1,9 +1,9 @@
|
||||||
HEROKU_AC_CACHE_DIR="$HOME/.cache"
|
if [[ "$OSTYPE" = darwin* ]]; then
|
||||||
if [ "$(uname -s)" = "Darwin" ]; then
|
cache_dir="${HOME}/Library/Caches"
|
||||||
HEROKU_AC_CACHE_DIR="$HOME/Library/Caches"
|
else
|
||||||
|
cache_dir="${XDG_CACHE_HOME:-"${HOME}/.cache"}"
|
||||||
fi
|
fi
|
||||||
if [ ! -z "$XDG_CACHE_HOME" ]; then
|
|
||||||
HEROKU_AC_CACHE_DIR="$XDG_CACHE_DIR"
|
setup_path="${cache_dir}/heroku/autocomplete/zsh_setup"
|
||||||
fi
|
[[ -f "$setup_path" ]] && source $setup_path
|
||||||
HEROKU_AC_ZSH_SETUP_PATH=$HEROKU_AC_CACHE_DIR/heroku/autocomplete/zsh_setup
|
unset cache_dir setup_path
|
||||||
[ -f $HEROKU_AC_ZSH_SETUP_PATH ] && source $HEROKU_AC_ZSH_SETUP_PATH
|
|
||||||
|
|
Loading…
Reference in a new issue