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
344 B
9 lines
344 B
HEROKU_AC_CACHE_DIR="$HOME/.cache" |
|
if [ "$(uname -s)" = "Darwin" ]; then |
|
HEROKU_AC_CACHE_DIR="$HOME/Library/Caches" |
|
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
|
|
|