Fix repository.rb archive
This commit is contained in:
parent
24a7c0f63d
commit
dc1d4eab22
1 changed files with 2 additions and 2 deletions
|
@ -153,14 +153,14 @@ class Repository
|
||||||
# Build file path
|
# Build file path
|
||||||
file_name = self.path_with_namespace.gsub("/","_") + "-" + commit.id.to_s + ".tar.gz"
|
file_name = self.path_with_namespace.gsub("/","_") + "-" + commit.id.to_s + ".tar.gz"
|
||||||
storage_path = Rails.root.join("tmp", "repositories")
|
storage_path = Rails.root.join("tmp", "repositories")
|
||||||
file_path = File.join(storage_path, file_name)
|
file_path = File.join(storage_path, self.path_with_namespace, file_name)
|
||||||
|
|
||||||
# Put files into a directory before archiving
|
# Put files into a directory before archiving
|
||||||
prefix = self.path_with_namespace + "/"
|
prefix = self.path_with_namespace + "/"
|
||||||
|
|
||||||
# Create file if not exists
|
# Create file if not exists
|
||||||
unless File.exists?(file_path)
|
unless File.exists?(file_path)
|
||||||
FileUtils.mkdir_p storage_path
|
FileUtils.mkdir_p File.dirname(file_path)
|
||||||
file = self.repo.archive_to_file(ref, prefix, file_path)
|
file = self.repo.archive_to_file(ref, prefix, file_path)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue