diff options
Diffstat (limited to 'lib/backup/builds.rb')
-rw-r--r-- | lib/backup/builds.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/backup/builds.rb b/lib/backup/builds.rb index 5e795a449de..766a35972f5 100644 --- a/lib/backup/builds.rb +++ b/lib/backup/builds.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -require 'backup/files' +require "backup/files" module Backup class Builds < Files @@ -9,7 +9,7 @@ module Backup def initialize(progress) @progress = progress - super('builds', Settings.gitlab_ci.builds_path) + super("builds", Settings.gitlab_ci.builds_path) end end end |