diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-08-25 02:05:25 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-08-25 02:05:25 +0200 |
commit | d8b03f3f95c10b61f7a9d4bd690f6cb429fb6ae8 (patch) | |
tree | f86b06e2ecc7f1526a280f0865187c4fa5ab7e88 | |
parent | 051a2ee2b8ddc9823b416a4a58b5c02625bc7246 (diff) | |
download | zsh-d8b03f3f95c10b61f7a9d4bd690f6cb429fb6ae8.tar.gz zsh-d8b03f3f95c10b61f7a9d4bd690f6cb429fb6ae8.tar.bz2 zsh-d8b03f3f95c10b61f7a9d4bd690f6cb429fb6ae8.zip |
init script: remove trailing slash from $ZSH_CACHE_DIR
-rw-r--r-- | oh-my-zsh.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 6cc5ac630..ed258f0ea 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -22,7 +22,7 @@ fi # Set ZSH_CACHE_DIR to the path where cache files should be created # or else we will use the default cache/ if [[ -z "$ZSH_CACHE_DIR" ]]; then - ZSH_CACHE_DIR="$ZSH/cache/" + ZSH_CACHE_DIR="$ZSH/cache" fi |