Commit e5cf4cd7 authored by James Lopez's avatar James Lopez

corrected a few warnings

parent 6f0c5033
...@@ -7,7 +7,7 @@ module Gitlab ...@@ -7,7 +7,7 @@ module Gitlab
new(*args).import new(*args).import
end end
def initialize(archive_file: , shared:) def initialize(archive_file:, shared:)
@archive_file = archive_file @archive_file = archive_file
@shared = shared @shared = shared
end end
......
...@@ -11,7 +11,7 @@ module Gitlab ...@@ -11,7 +11,7 @@ module Gitlab
end end
def restore def restore
return false unless File.exists?(@path_to_bundle) || wiki? return false unless File.exist?(@path_to_bundle) || wiki?
FileUtils.mkdir_p(path_to_repo) FileUtils.mkdir_p(path_to_repo)
......
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