You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently in app/models/repository_mirror.rb the regex used for validating mirror URL doesn't accept dots in the repository path. having dots in dir/file names is a common thing in *nix systems so the mirror URL regex should accept them.
this part of the regex: ([\w\/\-~]+)(\.git)
should be adapted to: ([\w\/\-\.~]+)(\.git)
The text was updated successfully, but these errors were encountered:
currently in app/models/repository_mirror.rb the regex used for validating mirror URL doesn't accept dots in the repository path. having dots in dir/file names is a common thing in *nix systems so the mirror URL regex should accept them.
this part of the regex:
([\w\/\-~]+)(\.git)
should be adapted to:
([\w\/\-\.~]+)(\.git)
The text was updated successfully, but these errors were encountered: