You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/pkg/omf/functions/index/omf.index.path.fish

6 lines
209 B
Fish

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