Commit e60bbdf9 authored by Kamil Trzcinski's avatar Kamil Trzcinski

Fix path to tag

parent 5b3ac8c8
......@@ -3,7 +3,7 @@ module ContainerRegistry
attr_reader :uri, :client, :path
def initialize(uri, options = {})
@path = uri || options[:path]
@path = options[:path] || uri
@uri = URI.parse(uri)
@client = ContainerRegistry::Client.new(uri, options)
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment