Merge pull request #993 from veprbl/fix_archiving_prefix

Download button: put files into a directory
This commit is contained in:
Dmitriy Zaporozhets 2012-08-27 11:04:00 -07:00
commit cb35a80e49

View file

@ -115,10 +115,13 @@ module Repository
storage_path = File.join(Rails.root, "tmp", "repositories", self.code)
file_path = File.join(storage_path, file_name)
# Put files into a directory before archiving
prefix = self.code + "/"
# Create file if not exists
unless File.exists?(file_path)
FileUtils.mkdir_p storage_path
file = self.repo.archive_to_file(ref, nil, file_path)
file = self.repo.archive_to_file(ref, prefix, file_path)
end
file_path