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

Merge pull request #2555 from studiofrenetic/master

Fix for archive download (method path missing)
parents 9152ab79 f97ae2ff
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -151,12 +151,12 @@ class Repository
return nil unless commit
 
# Build file path
file_name = self.path + "-" + commit.id.to_s + ".tar.gz"
storage_path = Rails.root.join("tmp", "repositories", self.path_with_namespace)
file_name = self.path_with_namespace + "-" + commit.id.to_s + ".tar.gz"
storage_path = Rails.root.join("tmp", "repositories")
file_path = File.join(storage_path, file_name)
 
# Put files into a directory before archiving
prefix = self.path + "/"
prefix = self.path_with_namespace + "/"
 
# Create file if not exists
unless File.exists?(file_path)
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