summaryrefslogtreecommitdiff
path: root/app/helpers/submodule_helper.rb
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-05-28 14:18:18 -0700
committerStan Hu <stanhu@gmail.com>2017-05-29 06:16:47 -0700
commit59b8165c9091751ebbae271655fd0eaf3c97ab20 (patch)
tree2cf54ec2d596715ca8d73dd84549ad7f85950173 /app/helpers/submodule_helper.rb
parent8a9e2415ca92897f2920127b7c1986a7c33d2035 (diff)
downloadgitlab-ce-59b8165c9091751ebbae271655fd0eaf3c97ab20.tar.gz
Strip trailing whitespaces in submodule URLssh-fix-submodules-trailing-spaces
Users attempting to access repositories that had `.gitmodules` entries with trailing whitespaces would encounter an Error 500. This was due to a change in bf876ec7 that quietly removed the whitespace stripping. Closes #33018
Diffstat (limited to 'app/helpers/submodule_helper.rb')
-rw-r--r--app/helpers/submodule_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/helpers/submodule_helper.rb b/app/helpers/submodule_helper.rb
index 09b73eee8cf..c0763a8a9c4 100644
--- a/app/helpers/submodule_helper.rb
+++ b/app/helpers/submodule_helper.rb
@@ -13,6 +13,7 @@ module SubmoduleHelper
if url =~ /([^\/:]+)\/([^\/]+(?:\.git)?)\Z/
namespace, project = $1, $2
+ project.rstrip!
project.sub!(/\.git\z/, '')
if self_url?(url, namespace, project)