refactor: change regex to remove everything before a ***github.com/foo/bar

pull/480/head
Jorge Bucaran 6 years ago
parent b4c4023e16
commit aff893c05b
No known key found for this signature in database
GPG Key ID: E54BA3C0E646DB30

@ -407,7 +407,7 @@ function _fisher_fishfile_format -a pkgs
}
}
function normalize(s) {
gsub(/^[ \t]*(https?:\/\/)?(github\.com\/)?|[\/ \t]*$/, "", s)
gsub(/^[ \t]*(https?:\/\/)?(.*github\.com\/)?|[\/ \t]*$/, "", s)
sub(/^\.\//, PWD"/", s)
sub(HOME, "~", s)
return s

Loading…
Cancel
Save