diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-04-13 09:20:42 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-04-13 09:20:42 +0200 |
commit | 259108ada340a0f1d49e2d80d1c433a377983e1c (patch) | |
tree | 1373f923b0cb29c83ce9351c183e5196a617e04b /lib/container_registry | |
parent | 37ab389139a21a8ab10ddbbddec1b61f720b27ab (diff) | |
download | gitlab-ce-259108ada340a0f1d49e2d80d1c433a377983e1c.tar.gz |
Fix registry for projects with uppercases in path
Diffstat (limited to 'lib/container_registry')
-rw-r--r-- | lib/container_registry/path.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/container_registry/path.rb b/lib/container_registry/path.rb index a4b5f2aba6c..30828bb6565 100644 --- a/lib/container_registry/path.rb +++ b/lib/container_registry/path.rb @@ -15,7 +15,7 @@ module ContainerRegistry LEVELS_SUPPORTED = 3 def initialize(path) - @path = path + @path = path.downcase end def valid? |