You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
259 B
9 lines
259 B
if [[ "$OSTYPE" = darwin* ]]; then
|
|
cache_dir="${HOME}/Library/Caches"
|
|
else
|
|
cache_dir="${XDG_CACHE_HOME:-"${HOME}/.cache"}"
|
|
fi
|
|
|
|
setup_path="${cache_dir}/heroku/autocomplete/zsh_setup"
|
|
[[ -f "$setup_path" ]] && source $setup_path
|
|
unset cache_dir setup_path
|