fix issue in import_service

This commit is contained in:
James Lopez 2016-05-12 10:57:28 +02:00
parent 385d6df20c
commit f06c5516db

View file

@ -10,7 +10,7 @@ module Gitlab
@archive_file = archive_file
@current_user = owner
@namespace = Namespace.find(namespace_id)
@shared = Gitlab::ImportExport::Shared.new(relative_path: path_with_namespace, project_path: project_path)
@shared = Gitlab::ImportExport::Shared.new(relative_path: path_with_namespace(project_path), project_path: project_path)
end
def execute
@ -43,8 +43,8 @@ module Gitlab
project: ProjectWiki.new(project_tree.project)).restore
end
def path_with_namespace
File.join(@namespace.path, @shared.opts[:project_path])
def path_with_namespace(project_path)
File.join(@namespace.path, project_path)
end
def repo_path