Skip to content
Snippets Groups Projects
Commit 26e340fc authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Merge pull request #3001 from nafu/4-2/repo_patch

Fix file_name for archive
parents e5080755 dc1d4eab
No related branches found
No related tags found
2 merge requests!3250Add gem install bundler to installation guide,!3140Patch 1
Loading
Loading
@@ -151,16 +151,16 @@ class Repository
return nil unless commit
 
# Build file path
file_name = self.path_with_namespace + "-" + 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")
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
prefix = self.path_with_namespace + "/"
 
# Create file if not exists
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)
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment