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

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

module Backup
  class Artifacts < Files
    def initialize
      super('artifacts', ArtifactUploader.local_artifacts_store)
    end

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