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.
fisher/functions/__fisher_path_from_url.fish

17 lines
289 B
Fish

function __fisher_path_from_url -a url
for file in $fisher_cache/*
pushd $file
switch "$url"
case (git ls-remote --get-url)
printf "%s\n" $file
popd
return
end
popd
end
return 1
end