Commit 7df495fb authored by James Lopez's avatar James Lopez

updated uploads saver

parent 816dfcb1
...@@ -14,15 +14,20 @@ module Gitlab ...@@ -14,15 +14,20 @@ module Gitlab
def save def save
return true unless File.directory?(uploads_path) return true unless File.directory?(uploads_path)
FileUtils.copy_entry(uploads_path, uploads_export_path) copy_files(uploads_path, uploads_export_path)
true
rescue => e rescue => e
@shared.error(e.message) @shared.error(e)
false false
end end
private private
def copy_files(source, destination)
FileUtils.mkdir_p(destination)
FileUtils.copy_entry(source, destination)
true
end
def uploads_export_path def uploads_export_path
File.join(@shared.export_path, 'uploads') File.join(@shared.export_path, 'uploads')
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment