0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

fix(heroku): fix XDG cache directory name and code style (#10436)

This commit is contained in:
smac89 2021-12-17 06:45:06 -06:00 committed by GitHub
parent 52a46ec362
commit b7fb0a55c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,9 @@
HEROKU_AC_CACHE_DIR="$HOME/.cache"
if [ "$(uname -s)" = "Darwin" ]; then
HEROKU_AC_CACHE_DIR="$HOME/Library/Caches"
if [[ "$OSTYPE" = darwin* ]]; then
cache_dir="${HOME}/Library/Caches"
else
cache_dir="${XDG_CACHE_HOME:-"${HOME}/.cache"}"
fi
if [ ! -z "$XDG_CACHE_HOME" ]; then
HEROKU_AC_CACHE_DIR="$XDG_CACHE_DIR"
fi
HEROKU_AC_ZSH_SETUP_PATH=$HEROKU_AC_CACHE_DIR/heroku/autocomplete/zsh_setup
[ -f $HEROKU_AC_ZSH_SETUP_PATH ] && source $HEROKU_AC_ZSH_SETUP_PATH
setup_path="${cache_dir}/heroku/autocomplete/zsh_setup"
[[ -f "$setup_path" ]] && source $setup_path
unset cache_dir setup_path