mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
17 lines
360 B
Fish
17 lines
360 B
Fish
|
function __fisher_path_from_plugin -a plugin
|
||
|
switch "$plugin"
|
||
|
case /\*
|
||
|
__fisher_plugin_from_path $plugin
|
||
|
|
||
|
case \*/\*
|
||
|
__fisher_path_from_url $plugin
|
||
|
|
||
|
case \*
|
||
|
if test ! -d "$fisher_cache/$plugin"
|
||
|
return 1
|
||
|
end
|
||
|
|
||
|
printf "%s\n" $fisher_cache/$plugin
|
||
|
end
|
||
|
end
|