mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
401647927e
Running fisher --list on an empty cache will display an error message because the glob $fisher_cache/* did not expand.
4 lines
110 B
Fish
4 lines
110 B
Fish
function __fisher_cache_list
|
|
find -L $fisher_cache/* -maxdepth 0 -type d ^ /dev/null | sed 's|.*/||'
|
|
end
|