Merge pull request #2726 from McJoppy/download-archive-bug

Update app/models/repository.rb
This commit is contained in:
Dmitriy Zaporozhets 2013-01-24 12:53:16 -08:00
commit c78ede3165

View file

@ -151,7 +151,7 @@ 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)