summaryrefslogtreecommitdiff
path: root/lib/backup/lfs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backup/lfs.rb')
-rw-r--r--lib/backup/lfs.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/backup/lfs.rb b/lib/backup/lfs.rb
index 4153467fbee..185ff8ae6bd 100644
--- a/lib/backup/lfs.rb
+++ b/lib/backup/lfs.rb
@@ -2,12 +2,12 @@ require 'backup/files'
module Backup
class Lfs < Files
- def initialize
- super('lfs', Settings.lfs.storage_path)
- end
+ attr_reader :progress
- def create_files_dir
- Dir.mkdir(app_files_dir, 0700)
+ def initialize(progress)
+ @progress = progress
+
+ super('lfs', Settings.lfs.storage_path)
end
end
end