Welcome to mirror list, hosted at ThFree Co, Russian Federation.

builds.rb « backup « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 635967f4bd465949847382d6e0b030b07c9144e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'backup/files'

module Backup
  class Builds < Files
    def initialize
      super('builds', Settings.gitlab_ci.builds_path)
    end

    def create_files_dir
      Dir.mkdir(app_files_dir, 0700)
    end
  end
end