Fix file_path to correspond with the name
This commit is contained in:
parent
a1d106110d
commit
20868acc96
|
@ -134,7 +134,7 @@ class Repository
|
|||
# Build file path
|
||||
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)
|
||||
file_path = File.join(storage_path, self.path_with_namespace, file_name)
|
||||
|
||||
# Put files into a directory before archiving
|
||||
prefix = self.path_with_namespace + "/"
|
||||
|
|
Loading…
Reference in a new issue