diff --git a/Iceberg.package/IceRemoteScpRepository.class/instance/parseUrl.st b/Iceberg.package/IceRemoteScpRepository.class/instance/parseUrl.st index 0436649120..ba992b519f 100644 --- a/Iceberg.package/IceRemoteScpRepository.class/instance/parseUrl.st +++ b/Iceberg.package/IceRemoteScpRepository.class/instance/parseUrl.st @@ -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.