Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-04-13 10:18:46 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-04-13 10:18:46 +0300
commit37ab389139a21a8ab10ddbbddec1b61f720b27ab (patch)
tree0f0694c56278f855c5d77e092e32974f7b0ce58e /lib/container_registry/path.rb
parent22726942fe0b6c11c20de070cc9784de12ca2ce6 (diff)
Revert "Fix registry for projects with uppercases in path"
This reverts commit 22726942fe0b6c11c20de070cc9784de12ca2ce6.
Diffstat (limited to 'lib/container_registry/path.rb')
-rw-r--r--lib/container_registry/path.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/container_registry/path.rb b/lib/container_registry/path.rb
index 30828bb6565..a4b5f2aba6c 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.downcase
+ @path = path
end
def valid?