fix archive download : not creating namespace directory

This commit is contained in:
Pierre Gambarotto 2013-02-14 14:29:24 +01:00
parent ed3f44085e
commit b6b6b640b1

View file

@ -141,7 +141,7 @@ class Repository
# Create file if not exists
unless File.exists?(file_path)
FileUtils.mkdir_p storage_path
FileUtils.mkdir_p File.dirname(file_path)
file = self.repo.archive_to_file(ref, prefix, file_path)
end