Merge pull request #175 from BretJohnson/master

For some reason a \ line continuation followed by a | at the beginning
This commit is contained in:
Jorge Bucaran 2016-03-29 13:39:28 +09:00
commit aca2314e64
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -38,8 +38,7 @@ function __fisher_plugin_validate -a plugin
return 1
end
printf "%s\n" "$plugin" \
| sed -E "
printf "%s\n" "$plugin" | sed -E "
s|^gh[:/]+|https://github.com/|
s|^gl[:/]+|https://gitlab.com/|
s|^bb[:/]+|https://bitbucket.org/|
@ -48,7 +47,6 @@ function __fisher_plugin_validate -a plugin
s|^(gist\.github\.com.*)|https://\1|
s|^http(s?)[:/]*|http\1://|
s|https://github((.com)?/)?|https://github.com/|
s|/*(\.git/*)*\$||g" \
| tr "[A-Z]" "[a-z]"
s|/*(\.git/*)*\$||g" | tr "[A-Z]" "[a-z]"
end
end