Fix double slash in index path (#775)

* Fix double slash in index path

Double slash might disturb comparison and make them false positive.

* Fix compatibility with older fish shell

Suggested by @faho [here](https://github.com/oh-my-fish/oh-my-fish/pull/775#issuecomment-736224485).
pull/797/head
Hernawan Faïz Abdillah 4 years ago committed by GitHub
parent 0a32584476
commit f8e09ca604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
function omf.index.path -d 'Get the path to the local package index'
set -q XDG_CACHE_HOME
and echo "$XDG_CACHE_HOME/omf"
or echo "$HOME/.cache/omf"
and echo (echo $XDG_CACHE_HOME | sed 's:/*$::')"/omf"
or echo (echo $HOME | sed 's:/*$::')"/.cache/omf"
end

Loading…
Cancel
Save