Fix file_name for archive
This commit is contained in:
parent
f9dd547aa7
commit
a1d106110d
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class Repository
|
||||||
return nil unless commit
|
return nil unless commit
|
||||||
|
|
||||||
# Build file path
|
# 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")
|
storage_path = Rails.root.join("tmp", "repositories")
|
||||||
file_path = File.join(storage_path, file_name)
|
file_path = File.join(storage_path, file_name)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue