summaryrefslogtreecommitdiff
path: root/app/models/repository.rb
diff options
context:
space:
mode:
authorFumiya Nakamura <nakamurafumiya003@gmail.com>2013-02-15 05:50:42 -0800
committerFumiya Nakamura <nakamurafumiya003@gmail.com>2013-02-15 05:50:42 -0800
commit20868acc96f953a86d17e47787638981be89389b (patch)
tree23b24e1026df647b4eb033a783a937d7efc59d59 /app/models/repository.rb
parenta1d106110d81eee71afb4563bce2ee88ff27a70e (diff)
downloadgitlab-ce-20868acc96f953a86d17e47787638981be89389b.tar.gz
Fix file_path to correspond with the name
Diffstat (limited to 'app/models/repository.rb')
-rw-r--r--app/models/repository.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/repository.rb b/app/models/repository.rb
index e7bdb2382cf..a5ca5533e08 100644
--- a/app/models/repository.rb
+++ b/app/models/repository.rb
@@ -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 + "/"