Skip to content

Commit

Permalink
Fixes #131 - Allow urls with \".\"
Browse files Browse the repository at this point in the history
  • Loading branch information
npasserini committed Oct 13, 2016
1 parent 28bc3e1 commit f89e186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
private
parseUrl
| matcher |
matcher := '(git@)?([\w.]+)\:([\w\-]+)/([\w\-]+)(\.git)?' asRegex.
matcher := '(git@)?([\w.]+)\:([\w\-]+)/([\w\-.]+)(\.git)?' asRegex.
(matcher matches: url)
ifTrue: [
host := matcher subexpression: 3.
Expand Down

0 comments on commit f89e186

Please sign in to comment.