From f97ae2ff854fe74f2fa350ad2f179443fffa66b4 Mon Sep 17 00:00:00 2001 From: Martin Bastien Date: Thu, 10 Jan 2013 15:55:34 -0500 Subject: [PATCH] Fix for archive download (method path missing) --- app/models/repository.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/models/repository.rb b/app/models/repository.rb index cf8ba4530a1..6bfdf2255f2 100644 --- a/app/models/repository.rb +++ b/app/models/repository.rb @@ -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)