Prevent additional remotes per plugin from affecting fishfile

closes #371
This commit is contained in:
Eric Mrak 2017-03-03 09:56:52 -08:00
parent ba3dd33269
commit 0073552780

View file

@ -1644,12 +1644,13 @@ function __fisher_plugin_get_url_info -a option
return return
end end
command cat {$argv}/.git/config ^ /dev/null | command awk -v option="$option" ' for dir in $argv
/url/ { git -C $dir config remote.origin.url ^ /dev/null | command awk -v option="$option" '
n = split($3, s, "/") {
n = split($0, s, "/")
if ($3 ~ /https:\/\/gist/) { if ($0 ~ /https:\/\/gist/) {
printf("# %s\n", $3) printf("# %s\n", $0)
next next
} }
@ -1664,6 +1665,7 @@ function __fisher_plugin_get_url_info -a option
} }
} }
' '
end
end end