Update app/models/repository.rb

Issue #2699 - Download button not functioning. Replaces slashes with underscore in downloads filename
4-1-stable
McJoppy 2013-01-24 09:22:14 +13:00
parent ed17a01181
commit 26b3050f37
1 changed files with 1 additions and 1 deletions

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)