updated uploads saver

This commit is contained in:
James Lopez 2016-05-19 15:37:21 +02:00
parent 816dfcb1c5
commit 7df495fb77
1 changed files with 8 additions and 3 deletions

View File

@ -14,15 +14,20 @@ module Gitlab
def save
return true unless File.directory?(uploads_path)
FileUtils.copy_entry(uploads_path, uploads_export_path)
true
copy_files(uploads_path, uploads_export_path)
rescue => e
@shared.error(e.message)
@shared.error(e)
false
end
private
def copy_files(source, destination)
FileUtils.mkdir_p(destination)
FileUtils.copy_entry(source, destination)
true
end
def uploads_export_path
File.join(@shared.export_path, 'uploads')
end