Skip to content
Snippets Groups Projects
Commit 20868acc authored by Fumiya Nakamura's avatar Fumiya Nakamura
Browse files

Fix file_path to correspond with the name

parent a1d10611
No related branches found
No related tags found
1 merge request!3002Fix file_name for archive
Loading
Loading
@@ -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
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment